/* ============================================
   DESKTOP.CSS - UNTUK DEVICE DESKTOP
   ============================================ */

@media (min-width: 1024px) {
    /* Container utama */
    .container {
        max-width: 490px !important;
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }
    
    /* Form box styling */
    .form-box {
        padding: 55px !important;
        border-radius: 16px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        border: 1px solid #d1d1d1;
    }
    
    /* Background body */
    body {
        background: #ffffff !important;
        padding: 10px;
        justify-content: center;
        align-items: center;
    }
    
    /* Logo desktop */
    .site-logo {
        height: 40px !important;
        margin-bottom: 25px !important;
    }
    
    .site-logo img {
        max-width: 200px;
    }
    
    .brand-title {
        font-size: 28px !important;
        margin-bottom: 10px;
    }
    
    .brand-subtitle {
        font-size: 22px !important;
        margin-bottom: 30px !important;
    }
    
    .page-title {
        font-size: 24px !important;
    }
    
    /* Personal page desktop */
    .personal-container {
        max-width: 700px !important;
    }
    
    .form-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .form-input {
        padding: 14px;
    }
    
    /* Footer desktop - horizontal center */
    .footer-links-container {
        margin-top: 40px !important;
        padding: 25px 0 !important;
        text-align: center !important;
        background: transparent;
        border-top: 1px solid #e0e0e0;
    }
    
    .footer-links {
        flex-direction: row !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 25px !important;
        font-size: 14px;
    }
    
    .footer-link {
        text-align: center !important;
        display: inline-block !important;
        padding: 0 !important;
        margin: 0 !important;
        color: #444;
        font-size: 14px;
    }
    
    .footer-link:hover {
        color: #666;
    }
    
    /* Button hover effects desktop */
    .btn-continue:hover, .btn-signin:hover, .btn-submit:hover {
        background: #0054ad;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 63, 135, 0.2);
    }
    
    /* Input focus effects desktop */
    .input-field:focus, .form-input:focus {
        box-shadow: 0 0 0 3px rgba(0, 103, 163, 0.1);
        border-color: #0067a3;
    }
    
    /* Personal page input focus */
    .form-input:focus {
        box-shadow: #0067a3;
        border-color: #0067a3;
    }
}

/* Desktop lebar (widescreen) */
@media (min-width: 1280px) {
    .container {
        max-width: 520px !important;
    }
    
    .personal-container {
        max-width: 750px !important;
    }
}