/* =========================
   AUTH SPLIT LOGIN STYLE
   TIDAK BENTROK style.css
   ========================= */

.auth-login {
    min-height: 100vh;
    background: #3066e6;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.auth-login-wrapper {
    width: 100%;
    max-width: 980px;
}

/* CARD */
.auth-card {
    border: none;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

/* LEFT */
.auth-left {
    background: linear-gradient(180deg, #2f6fe4, #0534a0);
    color: #fff;
    align-items: center;
    justify-content: center;
}

.auth-left-content {
    text-align: center;
    padding: 3rem;
}

.auth-left h5 {
    font-weight: 600;
    line-height: 1.4;
}

.auth-left p {
    opacity: 0.85;
}

/* ILLUSTRATION */
.auth-illustration {
    max-width: 100%;
    height: auto;
}

/* LOGO */
.auth-logo {
    height: 40px;
}

.auth-logo-sm {
    height: 5em;
}

/* RIGHT */
.auth-right {
    background: #ffffff;
}

.auth-form {
    padding: 3rem;
}

.auth-form .form-control {
    height: 46px;
    border-radius: 10px;
}

.auth-form .btn {
    height: 46px;
    border-radius: 10px;
    font-weight: 500;
}

.auth-form a {
    color: #2f6fe4;
}

/* MOBILE */
@media (max-width: 991px) {
    .auth-form {
        padding: 2rem;
    }
}

/* =========================
   GRADUATION CAP ANIMATION
   ========================= */

.graduation-cap {
    position: relative;
    width: 180px;
    height: 120px;
    margin: 0 auto;
    animation: floatCap 4s ease-in-out infinite;
}

/* TOP (diamond) */
.cap-top {
    position: absolute;
    top: 0;
    left: 50%;
    width: 160px;
    height: 40px;
    background: #ffffff;
    transform: translateX(-50%) skew(-20deg);
    border-radius: 6px;
}

/* BASE */
.cap-base {
    position: absolute;
    top: 38px;
    left: 50%;
    width: 90px;
    height: 18px;
    background: #f1c40f;
    transform: translateX(-50%);
    border-radius: 0 0 6px 6px;
}

/* TASSEL */
.tassel {
    position: absolute;
    top: 20px;
    right: 30px;
    width: 2px;
    height: 50px;
    background: #f1c40f;
    transform-origin: top;
    animation: swing 2s ease-in-out infinite;
}

.tassel span {
    position: absolute;
    bottom: -10px;
    left: -6px;
    width: 14px;
    height: 14px;
    background: #f1c40f;
    border-radius: 50%;
}

/* FLOAT ANIMATION */
@keyframes floatCap {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* TASSEL SWING */
@keyframes swing {
    0% {
        transform: rotate(10deg);
    }

    50% {
        transform: rotate(-10deg);
    }

    100% {
        transform: rotate(10deg);
    }
}