/* Custom Login Form Container Card */
div.custom-login-wrapper {
    max-width: 420px !important;
    margin: 40px auto !important;
    padding: 30px !important;
    background-color: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05) !important;
    box-sizing: border-box !important;
}

/* Form Row Spacing */
div.custom-login-wrapper p {
    margin-bottom: 20px !important;
}

/* Form Labels */
div.custom-login-wrapper label {
    display: block !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #334155 !important;
    margin-bottom: 6px !important;
}

/* Input Text Fields */
div.custom-login-wrapper input[type="text"],
div.custom-login-wrapper input[type="password"] {
    width: 100% !important;
    padding: 12px 14px !important;
    font-size: 15px !important;
    border: 1px solid #cbd5e1 !important;
    border-radius: 6px !important;
    background-color: #f8fafc !important;
    box-sizing: border-box !important;
    display: block !important;
}

/* Remember Me Checkbox Row */
div.custom-login-wrapper .login-remember label {
    display: inline-block !important;
    font-weight: 400 !important;
    margin-bottom: 0 !important;
    cursor: pointer !important;
}

div.custom-login-wrapper .login-remember input[type="checkbox"] {
    width: auto !important;
    margin-right: 8px !important;
    display: inline-block !important;
}

/* Submit Button */
div.custom-login-wrapper input[type="submit"] {
    width: 100% !important;
    padding: 12px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    background-color: #0284c7 !important;
    border: none !important;
    border-radius: 6px !important;
    cursor: pointer !important;
    display: block !important;
}

div.custom-login-wrapper input[type="submit"]:hover {
    background-color: #0369a1 !important;
}

/* Lost Password Link */
div.custom-login-wrapper .login-lost-password {
    text-align: center !important;
    margin-top: 15px !important;
}