.auth-form {
    border-radius: 15px;
    padding: 15px;
    background-color: #cac3a2;
    -webkit-box-shadow: 0px 4px 10px 0px rgb(160, 160, 160);
    -moz-box-shadow: 0px 4px 10px 0px rgb(160, 160, 160);
    box-shadow: 0px 4px 10px 0px rgb(160, 160, 160);
    width: 16vw;
}

.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

body {
    background-color: #f4f4f4;
}

.auth-head-text {
    text-align: center;
    color: white;
    font-size: 24px;
} 

.auth-no-account p{
    text-align: center;
    color: white;
    margin: 0px;
    font-size: 13px;
}

.auth-no-account a{
    color: white;
    text-decoration: none;
}

.auth-input {
    border: 0px;
    border-bottom: 2px solid #ffffff;
    background-color: #cac3a2;
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    border-radius: 4px;
    outline: none;
}

.auth-label {
    display: flex;
    align-items: center;
}

.auth-label i {
    margin-right: 8px; /* Space between icon and text */
}

.auth-label span {
    font-size: 14px; /* Adjust as necessary */
    font-weight: 400; /* Makes the text thin */
}

.auth-forgot-password {
    text-align: right;
}

.auth-forgot-password a{
    color: #333;
    text-decoration: none;
}

.auth-input {
    font-family: 'FontAwesome', sans-serif; /* Ensures the icon is displayed */
    color: white;
}

.auth-input::placeholder {
    font-weight: 300;
    font-size: 13px;
    color: white;
}

.auth-login-button{
    border-radius: 50px;
    background-color: white;
    color: #333;
    border: 0px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 400;
    width: 100%;
}

@media only screen and (max-width: 600px) {
    .auth-form {
        width: 80vw;
    }
}