/* 1. Full Page Background */
.loginBackground {
    background-color: #f8fafc !important; /* Light slate background */
    background-image: none !important; 
}

/* 2. The Login Panel (The white box) */
.login-panel {
    border-radius: 12px !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1) !important;
    padding: 20px !important;
}

/* 3. Primary Button (DynaDoc Blue) */
.ant-btn-primary {
    background-color: rgba(0, 190, 172, 1) !important; /* Modern Blue */
    border-radius: 6px !important;
    height: 45px !important;
    font-weight: 600 !important;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
}
.ant-btn-primary:hover {
    background-color: rgba(0, 190, 172, 0.7) !important;
}

/* 4. Inputs (Username/Password) */
.ant-input-affix-wrapper, .ant-input {
    border-radius: 6px !important;
    border-color: #cbd5e1 !important;
}
.ant-input-affix-wrapper-focused {
    border-color: rgba(0, 190, 172, 1) !important;
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2) !important;
}

/* 5. Hide the "Powered by Casdoor" Footer */
#footer {
    display: none !important;
}

/* 6. Custom Logo Sizing */
.panel-logo {
    width: 200px !important;
    margin-bottom: 20px !important;
}

/* 7. Typography */
body, .ant-form {
    font-family: 'Inter', -apple-system, sans-serif !important;
}