body {
    font-family: var(--semibold-font);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: #F3F4F7;
}

.auth-container {
    width: 33%;
    border-radius: 15px;
    padding: 2.5rem 2.5rem 1.8rem;
    color: #3F3E3D;
    margin: 3rem auto;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, .05);
}

.auth-container .logo {
    text-align: center;
    margin: 0 auto 2rem;
    width: 9rem;
}
.auth-container .logo img{
    width: 100%;
    object-fit: cover;
}

.auth-container h6 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-family: var(--bold-font);
    margin-bottom: 2.2rem;
}

.auth-container .form-input {
    width: 100%;
    border: solid 1px #ced4da;
    margin-top: 1.5rem;
    border-radius: 12px;
    padding: .7rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.auth-container .form-input.error {
    border-color: #ef233c;
}

.auth-container .form-input input {
    width: 90%;
    background-color: transparent;
    border: none;
    color: #383838;
    height: 100%;
    font-size: 14px;
}

.auth-container .form-input input:focus {
    outline: none;
}

.auth-container .form-input input::placeholder {
    color: #adb5bd;
    font-size: 14px;
}

.auth-container .form-input i,
.auth-container .form-input span {
    width: 10%;
    color: #ced4da;
    font-size: 1rem;
    display: inline-block;
    text-align: left;
}

.auth-container .form-input span {
    color: #adb5bd;
}


.auth-container .form-input i.password {
    cursor: pointer;
}

.auth-container .form-btn {
    width: 100%;
    background: var(--btn-gradient);
    color: white;
    border-radius: 12px;
    border: none;
    text-align: center;
    padding: .7rem;
    margin: 2.5rem 0 4rem;
}

.auth-container .form-link {
    text-align: center;
    font-size: 14px;
    margin-bottom: .6rem;
}

.auth-container .form-link a {
    color: var(--primary-color);
    transition: all .5s ease;
}

.auth-container .form-link a:hover {
    color: rgb(23, 172, 227);
}

.auth-container .error-text {
    color: #ef233c;
    font-size: 11px;
    display: inline-block;
    padding: 10px 5px 0;
}

@media screen and (max-width:998px) {
    .auth-container {
        width: 50%;
    }
}

@media screen and (max-width:768px) {
    .auth-container {
        width: 80%;
    }
}

@media screen and (max-width:480px) {
    .auth-container {
        width: 87%;
    }
}