:root {
    --warna-blue: #F29AA9;        /* Pink Logo */
    --warna-light-blue: #FCE8EC;  /* Pink Muda */
    --warna-gold: #F7B4C0;        /* Pink Aksen */
    --warna-dark: #2F4D7A;        /* Biru Logo */
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(
        135deg,
        #FCE8EC 0%,
        #FFFFFF 50%,
        #EEF3FA 100%
    );
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.login-container {
    max-width: 500px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.login-card {
    background-color: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(47, 77, 122, 0.15);
    border: 1px solid rgba(47, 77, 122, 0.10);
    position: relative;
    overflow: hidden;
}

.login-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 12px;
    background: linear-gradient(
        90deg,
        #2F4D7A 0%,
        #F29AA9 100%
    );
}

.login-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 12px;
    background: linear-gradient(
        90deg,
        #F29AA9 0%,
        #2F4D7A 100%
    );
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.logo-container {
    text-align: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s;
}

.logo-container:hover {
    transform: scale(1.05);
}

.logo-container img {
    max-height: 150px;
}

.section-title {
    color: var(--warna-dark);
    text-align: center;
    margin-bottom: 0.5rem;
    font-weight: 600;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(
        90deg,
        #2F4D7A,
        #F29AA9
    );
    margin: 10px auto;
    border-radius: 10px;
}

.section-subtitle {
    color: var(--warna-blue);
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 500;
    font-size: 1.1rem;
}

.form-label {
    font-weight: 500;
    color: var(--warna-dark);
    margin-bottom: 0.5rem;
}

.input-group-text {
    background-color: #FCE8EC;
    border-color: #dee2e6;
    color: var(--warna-dark);
}

.form-control {
    border-color: #dee2e6;
    padding: 0.75rem 1rem;
    transition: all 0.3s;
}

.form-control:focus {
    border-color: var(--warna-blue);
    box-shadow: 0 0 0 0.25rem rgba(242, 154, 169, 0.25);
}

.btn-warna {
    background: linear-gradient(
        135deg,
        #2F4D7A 0%,
        #F29AA9 100%
    );
    color: white;
    border: none;
    padding: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(47, 77, 122, 0.25);
    border-radius: 8px;
}

.btn-warna:hover {
    background: linear-gradient(
        135deg,
        #23406B 0%,
        #F29AA9 100%
    );
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(47, 77, 122, 0.35);
}

.btn-warna:active {
    transform: translateY(0);
}

#togglePassword {
    border-color: #dee2e6;
    background-color: white;
    transition: all 0.3s;
}

#togglePassword:hover {
    background-color: #FCE8EC;
    color: var(--warna-dark);
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.floating-shapes div {
    position: absolute;
    background: rgba(242, 154, 169, 0.08);
    border-radius: 50%;
    animation: float 15s linear infinite;
    bottom: -150px;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.5;
    }

    100% {
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
    }
}

.footer-text {
    text-align: center;
    margin-top: 2rem;
    color: #6c757d;
    font-size: 0.9rem;
}

.footer-text a {
    color: var(--warna-dark);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-text a:hover {
    color: var(--warna-blue);
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 576px) {
    .login-card {
        padding: 1.5rem;
        margin: 0 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .logo-container img {
        max-height: 120px;
    }
}