*
{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

button,
a
{
  -webkit-tap-highlight-color: transparent;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}

body
{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow: hidden;
}

h1
{
    color: #000;
    font-family: sans-serif;
    font-weight: bold;
    font-size: 30px;
    text-transform: capitalize;
    text-align: center;
    position: relative;
    top: 50px;
}

.login-thumb
{
    position: relative;
    top: 60px;
    width: 310px;
    height: auto;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding: 20px 6px;
}

.login-thumb .control-btns
{
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 10px;
}

.login-thumb .control-btns a
{
    text-decoration: none;
    border: none;
    outline: none;
    color: #000;
    font-family: sans-serif;
    font-weight: 500;
    font-size: 15px;
    text-transform: capitalize;
}

.login-thumb h3
{
    color: #000;
    font-family: sans-serif;
    font-weight: bold;
    font-size: 16px;
    text-transform: capitalize;
    text-align: center;
}

.login-thumb .fields
{
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
    align-items: center;
}

.login-thumb .fields label
{
    color: #444;
    font-family: sans-serif;
    font-weight: bold;
    font-size: 13px;
    text-align: left;
    display: block;
    width: 100%;
}


.login-thumb .fields input,
.login-thumb .fields select,
.login-thumb .fields textarea
{
    width: 100%;
    padding: 16px;
    outline: 1px solid #888;
    border: none;
    font-size: 13px;
    border-radius: 4px;
}

.login-thumb .fields input::placeholder,
.login-thumb .fields textarea::placeholder
{
    font-weight: bold;
    color: #aaa;
}

.login-thumb .fields input:valid,
.login-thumb .fields input:focus
{
    outline: 1px solid rgb(12, 197, 12);
}

.login-thumb button
{
    border: none;
    outline: none;
    color: #fff;
    text-transform: capitalize;
    font-family: sans-serif;
    font-weight: bold;
    font-size: 13px;
    letter-spacing: 1px;
    padding: 14px;
    width: 100%;
    border-radius: 4px;
    background: rgb(105, 195, 105);
    display: block;
    cursor: pointer;
}


.login-thumb .login-image
{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: space-around;
    align-items: center;
}

.login-thumb .login-image .login-img
{
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 4px;
}

.login-thumb .login-image .login-img img
{
    width: 60px;
    height: 60px;
    border-radius: 8px;
}

.login-thumb .login-image .login-img a
{
    text-align: center;
    text-decoration: none;
    padding: 4px;
    color: green;
    font-family: sans-serif;
    font-weight: bold;
    font-size: 13px;
    text-transform: capitalize;
}

.login-thumb .no-account
{
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
    position: relative;
    top: 10px;
}

.login-thumb .no-account p
{
    color: #444;
    font-family: sans-serif;
    font-weight: bold;
    font-size: 13px;
    text-align: center;
}

.login-thumb .no-account a
{
    text-decoration: none;
    border: none;
    outline: none;
    letter-spacing: 1px;
    color: rgb(105, 195, 105);
    font-family: sans-serif;
    font-weight: bold;
    font-size: 14px;
}

.login-thumb .go-home
{
    text-decoration: none;
    border: none;
    outline: none;
    letter-spacing: 1px;
    color: rgb(105, 195, 105);
    font-family: sans-serif;
    font-weight: bold;
    font-size: 13px;
    width: 130px;
    position: relative;
    top: 4px;
    display: block;
    margin: 0 auto;
}
