#container-login {
    height: 100%;
    max-width: 420px;
    width: 100%;
    padding: 20px;
}

main#main-body {
    padding-bottom: 0;
}

header {
    padding: 20px 0 70px !important;
    position: relative;
}

header h1 {
    font-weight: 500;
    font-size: 1.8rem;
    text-align: center;
}
.header-1 a{
    top: 22%;
}

#email-content {
    margin-bottom: 20px;
    position: relative;
}

#email-content input {
    width: 100%;
    padding: 15px 15px 15px 60px;
    border: 2px solid lightgray;
    color: #767676;
    border-radius: 16px;
    font-size: 1rem;
    outline: none;
}

#email-content i {
    position: absolute;
    left: 20px;
    top: 15px;
    font-size: 1.4rem;
}

#password-content {
    margin-bottom: 30px;
    position: relative;
}

#password-content input {
    width: 100%;
    padding: 15px 15px 15px 60px;
    border: 2px solid lightgray;
    color: #767676;
    font-size: 1rem;
    border-radius: 16px;
    outline: none;
}

#password-content i {
    position: absolute;
    left: 20px;
    top: 14px;
    font-size: 1.4rem;
}

#password-content #view-password {
    position: absolute;
    right: 20px;
    top: 11px;
}

#password-content #view-password i {
    position: relative;
    left: 0;
    top: 4px;
    cursor: pointer;
    display: none;
}

#password-content #view-password i.fa-eye {
    display: block;
}

#remember-me-content {
    width: 50%;
    align-items: center;
    justify-content: start;
    display: flex;
}

#forget-password {
    width: 50%;
    text-align: end;
}

#forget-password a {
    color: var(--primary);
}

#form-login input:focus,
#form-login input:focus-within,
#form-login input:visited,
#form-login input:focus-visible,
#form-login input:active {
    border: 2px solid var(--primary) !important;
}

input.error {
    border: 2px solid #f00 !important;
}

.error-message {
    color: #f00;
    font-size: 0.8rem;
    margin-left: 10px;
    margin-top: 3px;
}
#social-login-container{
    margin: 70px 0;
    display: flex;
    justify-content: center;
	gap: 15px;
}
#social-login-container a{
    border: 1px solid #e9e6ed;
    padding: 10px 25px;
    border-radius: 12px;
}
#footer {
    display: none;
}

#remember-me-content .toggle {
    position: relative;
    display: inline-block;
    margin-right: 15px;
    width: 50px;
    height: 26px;
    background-color: hsl(0, 0%, 85%);
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.25s ease-in;
}

#remember-me-content .toggle::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 22px;
    height: 22px;
    background-color: white;
    border-radius: 50%;
    transition: all 0.25s ease-out;
}

#remember-me:checked+.toggle {
    background-color: var(--primary);
}

#remember-me:checked+.toggle::after {
    transform: translateX(24px);
}

#remember-me-content .hide-me {
    opacity: 0;
    height: 0;
    width: 0;
}

form button {
    width: 100%;
    margin-top: 60px;
    border: 1px solid #232323;
    padding: 16px 0;
    background: #232323;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 12px;
    cursor: pointer;
}

#line-break {
    margin-top: 30px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#line-break div {
    width: fit-content;
    padding: 10px 25px;
    z-index: 9;
    background: #fbfbfb;
}

#line-break hr {
    width: 100%;
    position: absolute;
    z-index: 1;
    border-top: 1px solid lightgray;
}

#register-section {
    margin-top: 50px;
    text-align: center;
}

#register-section a {
    color: var(--primary);
    font-weight: 500;
}

#email-reset-pwd-content {
    position: relative;
}

#email-reset-pwd-content i {
    position: absolute;
    right: 20px;
    top: 14px;
    font-size: 1.4rem;
}

#email-reset-pwd {
    width: 100%;
    padding: 15px 60px 15px 15px;
    border: 2px solid lightgray;
    color: #767676;
    border-radius: 16px;
    font-size: 1rem;
    outline: none;
}

#container-forget-password {
    position: fixed;
    z-index: 100;
    top: 0;
    height: 100%;
    width: 100%;
    max-width: 420px;
    margin: auto;
    transform: translateX(100vw);
    background: #ffffff;
    transition: 0.5s;
    padding: 0 20px;
}

#container-forget-password.active {
    transform: translateX(0);
}

#container-forget-password header button {
    position: absolute;
    left: 0;
    top: 22%;
    font-size: 1.4rem;
    background: none;
    color: gray;
    border: none;
    cursor: pointer;
}

#container-forget-password span {
    display: block;
    margin-bottom: 20px;
    line-height: 24px;
    color: gray;
}

.success-message {
    color: green;
    font-size: 0.8rem;
    margin-left: 10px;
    margin-top: 3px;
}