


.home-main {
    min-height: calc(100vh - 150px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}


.container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    height: 100%;
    width: 100%;
    gap: 4rem;
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}


.bg-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    backdrop-filter: blur(0px);
    transition: all 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.section-login:hover ~ .bg-overlay {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
}


.section-login {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 2.5rem;
    border-radius: 16px;
    width: 100%;
    max-width: 380px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
    transition: all 0.3s ease;
}

.section-login:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(167, 138, 238, 0.25);
}

.login-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-login {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}


.input-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #fff;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.input-group:focus-within {
    border-color: #A78AEE;
    box-shadow: 0 0 0 3px rgba(167, 138, 238, 0.1);
}

.input-group label {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.input-group label img {
    width: 18px;
    height: 18px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.input-group:focus-within label img {
    opacity: 1;
}

.form-login input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 0.95rem;
    color: #333;
    background: transparent;
    width: 100%;
}

.form-login input::placeholder {
    color: #999;
}

/* Login Button */
.btn-login {
    width: 100%;
    height: 48px;
    margin-top: 0.5rem;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #6c86e2 0%, #8B6FD9 100%);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(167, 138, 238, 0.3);
}

.btn-login:hover {
    filter: brightness(0.9);
    box-shadow: 0 6px 20px rgba(167, 138, 238, 0.4);
}

.btn-login:active {
    transform: scale(0.9);
}

/* Register Link */
.link-register {
    text-align: center;
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
}

.link-register:hover {
    color: #A78AEE;
    text-decoration: underline;
}


.container-title {
    max-width: 500px;
    text-align: center;
    color: #94BD7F;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.container-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.tagline {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 300;
}



@media (max-width: 900px) {
    .container {
        flex-direction: column-reverse;
        gap: 2rem;
        padding: 1.5rem;
    }

    .section-login {
        max-width: 100%;
    }

    .container-title h2 {
        font-size: 1.8rem;
    }

    .tagline {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .home-main {
        min-height: calc(100vh - 100px);
    }

    .section-login {
        padding: 1.5rem;
    }

    .login-title {
        font-size: 1.25rem;
    }

    .input-group {
        padding: 0.6rem 0.8rem;
    }

    .container-title h2 {
        font-size: 1.5rem;
    }

    .tagline {
        font-size: 0.9rem;
    }
}