@import "fonts.css";
@import "color.css";
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-nomal);
}
body {
    margin: 0;
    min-height: 100vh;
    align-items: center;
}
.container {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 100vh;
    margin: 0;
    padding: 0 10%;
    justify-content: center;
    position: relative;
}
.login-box {
    background: white;
    border-radius: 8px;
    box-shadow: 8px 8px 16px rgba(89, 189, 125, 0.5);
    border: 1px solid var(--primary);
    width: 350px;
    z-index: 1;
    position: relative;
    margin: 20px auto;
}
.login-form {
    width: 100%;
    padding: 2rem;
}
.login-box h1 {
    color: #57BD7C;
    text-align: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--primary);
    width: 100%;
    margin: 0;
    font-family: var(--font-title);
}
.login-text {
    color: #5C5C5C;
    font-size: 16px;
    padding-bottom: 8px;
}
.input-group-1 {
    position: relative;
    margin-bottom: 1.5rem;
}
.input-group-1 input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #59BD7D;
    border-radius: 12px;
    box-shadow: 8px 8px 16px rgba(89, 189, 125, 0.3);
    outline: none;
}
.input-group-1 input:focus {
    border-color: #3DA364;
    box-shadow: 4px 4px 12px rgba(61, 163, 100, 0.5);
}
.input-group-1 label {
    display: block;
}
.input-group-1 .icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    cursor: pointer;
}
.input-group-1 .icon img {
    width: 20px;
    height: 20px;
    display: block;
    opacity: 1;
    pointer-events: auto;
}
.login-btn {
    width: 60%;
    padding: 0.8rem;
    background-color: #59BD7D;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    margin: 0 auto 1rem auto;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 36px;
    transition: all 0.3s ease;
}
.login-btn:hover {
    background-color: #FFFFFF;
    border: 2px solid #00BF8F;
}
.btn-a {
    font-size: 20px;
    color: white;
    text-decoration: none;
    width: 100%;
    text-align: center;
    transition: all 0.3s ease;
}
.login-btn:hover .btn-a {
    color: #00BF8F;
}
.signup-text {
    text-align: center;
    color: var(--primary);
    display: block;
    margin-top: 1rem;
    font-family: var(--font-link-regular);
}
.forgot-password {
    display: block;
    text-align: center;
    color: var(--secondary);
    text-decoration: none;
    margin-top: 2rem;
    font-family: var(--font-link-regular);
}
.illustration {
    width: 100%;
    height: 100%;
    background-image: url('../assets/gif-login-1.gif');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
/* Responsive adjustments */
@media screen and (max-width: 1200px) {
    .container {
        padding: 0 5%;
    }
}
@media screen and (max-width: 992px) {
    .login-box {
        width: 80%;
    }
}
@media screen and (max-width: 768px) {
    .login-box {
        width: 90%;
    }
}
@media screen and (max-width: 576px) {
    .login-box {
        width: 95%;
    }
}