body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(145deg, #1e3a8a 0%, #7e22ce 50%, #ec4899 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    overflow: hidden;
    position: relative;
}

.page-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.login-wrap {
    max-width: 520px;
    width: 100%;
    padding: 24px;
    box-sizing: border-box;
}

.login-content {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    padding: 48px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transform: translateY(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

    .login-content:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
    }

.login-logo {
    text-align: center;
    margin-bottom: 40px;
}

.logo-image {
    width: 90px;
    height: auto;
    margin-bottom: 20px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), filter 0.3s ease;
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.6));
}

    .logo-image:hover {
        transform: scale(1.1) rotate(5deg);
        filter: drop-shadow(0 0 18px rgba(255, 255, 255, 0.9));
    }

.login-logo h3 {
    font-weight: 800;
    color: #ffffff;
    font-size: 32px;
    margin: 0;
    letter-spacing: 2px;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
    background: linear-gradient(45deg, #ffffff, #d1d5db);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.form-group {
    margin-bottom: 28px;
}

    .form-group label {
        font-weight: 600;
        color: #ffffff;
        margin-bottom: 12px;
        display: block;
        font-size: 16px;
        letter-spacing: 0.5px;
    }

.au-input {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.95);
    color: #1f2937;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

    .au-input:focus {
        outline: none;
        background: #ffffff;
        box-shadow: 0 0 16px rgba(59, 130, 246, 0.6);
        transform: translateY(-3px);
    }

    .au-input::placeholder {
        color: #6b7280;
        opacity: 1;
    }

.au-btn {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(90deg, #3b82f6 0%, #a855f7 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

    .au-btn:hover {
        background: linear-gradient(90deg, #2563eb, #9333ea);
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(59, 130, 246, 0.5);
    }

    .au-btn::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 400%;
        height: 400%;
        background: rgba(255, 255, 255, 0.25);
        transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        transform: translate(-50%, -50%) scale(0);
        border-radius: 50%;
    }

    .au-btn:hover::before {
        transform: translate(-50%, -50%) scale(1);
    }

.text-danger {
    color: #ef4444;
    font-size: 14px;
    margin-top: 10px;
    font-weight: 500;
}

.login-form {
    position: relative;
}

.social-login .btn-google,
.social-login .btn-facebook {
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #ffffff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-google {
    background: #db4437;
}

    .btn-google:hover {
        background: #c13528;
        transform: translateY(-3px);
        box-shadow: 0 4px 12px rgba(219, 68, 55, 0.4);
    }

.btn-facebook {
    background: #1877f2;
}

    .btn-facebook:hover {
        background: #1565c0;
        transform: translateY(-3px);
        box-shadow: 0 4px 12px rgba(24, 119, 242, 0.4);
    }

.background-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: float 25s infinite ease-in-out;
    mix-blend-mode: overlay;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 5%;
    left: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 10%;
    animation-delay: 6s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 10%;
    left: 20%;
    animation-delay: 12s;
}

.shape-4 {
    width: 250px;
    height: 250px;
    top: 25%;
    right: 25%;
    animation-delay: 18s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }

    50% {
        transform: translateY(-40px) rotate(180deg) scale(1.1);
    }
}

@media (max-width: 768px) {
    .login-wrap {
        padding: 16px;
    }

    .login-content {
        padding: 36px;
        border-radius: 20px;
    }

    .logo-image {
        width: 70px;
    }

    .login-logo h3 {
        font-size: 28px;
    }

    .au-input {
        font-size: 15px;
        padding: 14px;
    }

    .au-btn {
        font-size: 15px;
        padding: 14px;
    }

    .form-group label {
        font-size: 15px;
    }

    .shape-1 {
        width: 200px;
        height: 200px;
    }

    .shape-2 {
        width: 150px;
        height: 150px;
    }

    .shape-3 {
        width: 100px;
        height: 100px;
    }

    .shape-4 {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 576px) {
    .login-wrap {
        padding: 12px;
    }

    .login-content {
        padding: 24px;
        border-radius: 16px;
    }

    .logo-image {
        width: 60px;
    }

    .login-logo h3 {
        font-size: 24px;
    }

    .form-group {
        margin-bottom: 24px;
    }

    .au-input {
        font-size: 14px;
        padding: 12px;
    }

    .au-btn {
        font-size: 14px;
        padding: 12px;
    }

    .form-group label {
        font-size: 14px;
    }

    .text-danger {
        font-size: 13px;
    }

    .social-login .btn-google,
    .social-login .btn-facebook {
        padding: 10px 20px;
        font-size: 14px;
    }

    .shape-1 {
        width: 120px;
        height: 120px;
        top: 2%;
        left: 2%;
    }

    .shape-2 {
        width: 100px;
        height: 100px;
        top: 65%;
        right: 2%;
    }

    .shape-3 {
        width: 80px;
        height: 80px;
        bottom: 2%;
        left: 10%;
    }

    .shape-4 {
        width: 90px;
        height: 90px;
        top: 15%;
        right: 5%;
    }
}
