
    .auth-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        min-height: 100vh;
        padding: 50px 50px;
        position: relative;
    }
    
    .auth-bg {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80%;
        height: 85%;
        background-image: url("../../../img/login-backdrop.png");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        z-index: 1;
        border-radius: 0 0 20px 20px;
        
    }
    
    .logo-top {
        position: relative;
        z-index: 2;
        text-align: center;
        margin-bottom: 5px;
        margin-top: 50px;
    }
    
    .brand-logo {
        width: 180px;
        height: auto;
    }
    
    .login-card {
        background: white;
        border-radius: 12px;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        width: 100%;
        max-width: 520px;
        padding: 30px;
        position: relative;
        z-index: 2;
        margin-top: 40px;
    }
    
    .register-link {
        text-align: right;
        margin-bottom: 20px;
    }
    
    .register-link a {
        color: #4299e1;
        font-size: 14px;
        text-decoration: none;
        font-weight: 500;
    }
    
    .register-link a:hover {
        text-decoration: underline;
    }
     
    
    .btn-primary:hover {
        background: #3182ce;
    }
    
   
    
    /* Alert */
    .alert {
        padding: 12px 14px;
        border-radius: 8px;
        margin-bottom: 20px;
        font-size: 14px;
        border: none;
    }
    
    .alert-danger {
        background-color: #fed7d7;
        color: #c53030;
    }
    
    .alert-success {
        background-color: #c6f6d5;
        color: #276749;
    }
    
    .text-danger {
        color: #e53e3e;
        font-size: 12px;
        margin-top: 5px;
        display: block;
    }
    
    /* Title styles */
    .login-title {
        font-size: 20px;
        font-weight: 900;
        color: #2d3748;
        margin-bottom: 8px;
    }
    
    .login-subtitle {
        color: #718096;
        font-size: 14px;
        line-height: 1.4;
        margin-bottom: 20px;
    }
    
     
    /* Tablet (768px ke bawah) */
    @media (max-width: 768px) {
        .auth-wrapper {
            padding: 30px 30px;
            min-height: 100vh;
        }
        
        .auth-bg {
            width: 85%;
            height: 60%;
        }
        
        .logo-top {
            margin-top: 30px;
        }
        
        .brand-logo {
            width: 150px;
        }
        
        .login-card {
            max-width: 420px;
            padding: 25px;
            margin-top: 30px;
        }
        
        .login-title {
            font-size: 18px;
        }
        
        footer {
            font-size: 12px;
            margin-top: 30px;
        }
    }
    
    /* Mobile (576px ke bawah) */
    @media (max-width: 576px) {
        .auth-wrapper {
            padding: 20px 15px;
            min-height: 100vh;
        }
        
        .auth-bg {
            width: 90%;
            height: 50%;
            border-radius: 0 0 15px 15px;
        }
        
        .logo-top {
            margin-top: 20px;
            margin-bottom: 0;
        }
        
        .brand-logo {
            width: 130px;
        }
        
        .login-card {
            max-width: 100%;
            padding: 20px;
            margin-top: 25px;
            border-radius: 10px;
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        }
        
        .login-title {
            font-size: 18px;
            font-weight: 800;
        }
        
        .login-subtitle {
            font-size: 13px;
        }
        
        .form-control {
            padding: 10px 12px;
            font-size: 13px;
        }
        
        .form-label {
            font-size: 13px;
        }
        
        .btn-primary {
            padding: 12px;
            font-size: 14px;
        }
        
        .register-link a {
            font-size: 13px;
        }
        
        footer {
            font-size: 11px;
            margin-top: 25px;
            padding: 0 10px;
        }
    }
    
    /* Small Mobile (400px ke bawah) */
    @media (max-width: 400px) {
        .auth-wrapper {
            padding: 15px 10px;
        }
        
        .auth-bg {
            width: 95%;
            height: 45%;
        }
        
        .logo-top {
            margin-top: 15px;
        }
        
        .brand-logo {
            width: 110px;
        }
        
        .login-card {
            padding: 18px 15px;
            margin-top: 20px;
        }
        
        .login-title {
            font-size: 16px;
        }
        
        .login-subtitle {
            font-size: 12px;
        }
        
        footer {
            font-size: 10px;
        }
    }
    
    /* Landscape mode untuk mobile */
    @media (max-height: 600px) and (orientation: landscape) {
        .auth-wrapper {
            padding: 15px 20px;
            min-height: 120vh;
        }
        
        .auth-bg {
            height: 60%;
        }
        
        .logo-top {
            margin-top: 15px;
        }
        
        .login-card {
            margin-top: 20px;
            padding: 20px;
        }
        
        footer {
            margin-top: 20px;
        }
    } 