/**
 * Corporate Professional Login Theme
 *
 * @package    CLPD51
 * @subpackage CLPD51/public/css
 */
 body.login {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
    background-color: #f0f4f8;
    background-image: linear-gradient(90deg, rgba(224, 231, 239, 0.6) 50%, transparent 50%),
                      linear-gradient(rgba(224, 231, 239, 0.6) 50%, transparent 50%);
    background-size: 40px 40px;
}
body.login #login {
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 45px 40px;
    width: 440px;
    position: relative;
    border-top: 5px solid #1a56db;
}
body.login h1 a {
    margin-bottom: 34px;
}
body.login form {
    margin-top: 24px;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}
body.login form .input,
body.login input[type="text"],
body.login input[type="password"] {
    background-color: #f9fafb;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    box-shadow: none;
    color: #1f2937;
    font-size: 15px;
    font-weight: 400;
    padding: 14px 16px;
    transition: all 0.2s ease;
}
body.login form .input:focus,
body.login input[type="text"]:focus,
body.login input[type="password"]:focus {
    border-color: #1a56db;
    box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.15);
    outline: none;
    background-color: #fff;
}
body.login label {
    color: #374151;
    font-size: 15px;
    font-weight: 600;
}
body.login .button.wp-hide-pw {
    height: 46px;
    color: #6b7280;
}
body.login .button.wp-hide-pw:focus {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    color: #374151;
}
body.login .button-primary {
    background-color: #1a56db;
    border: none;
    border-radius: 4px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    height: auto;
    padding: 20px !important;
    width: 100%;
    transition: all 0.2s ease;
}
body.login .button-primary:hover {
    background-color: #1e429f;
    box-shadow: 0 4px 12px rgba(26, 86, 219, 0.2);
}
body.login .button-primary:active {
    background-color: #1a44b8;
    box-shadow: 0 2px 6px rgba(26, 86, 219, 0.2);
}
body.login #nav,
body.login #backtoblog {
    margin: 24px 0 0;
    padding: 0;
    text-align: center;
}
body.login #nav a,
body.login #backtoblog a {
    color: #4b5563;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
}
body.login #nav a:hover,
body.login #backtoblog a:hover {
    color: #1a56db;
}
/* Checkbox style */
body.login form .forgetmenot {
    margin-bottom: 20px;
}
body.login form .forgetmenot input[type="checkbox"] {
    border: 1px solid #d1d5db;
    border-radius: 3px;
}
body.login form .forgetmenot input[type="checkbox"]:checked {
    background-color: #1a56db;
    border-color: #1a56db;
}
body.login form .forgetmenot label {
    font-size: 14px;
    font-weight: 500;
    color: #4b5563;
}
/* Login message and errors */
body.login .message,
body.login #login_error {
    background-color: #f9fafb;
    border-left: 4px solid #1a56db;
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    color: #1f2937;
    margin-bottom: 24px;
    font-size: 14px;
}
body.login #login_error {
    border-left-color: #dc2626;
}
/* Add subtle branding elements */
body.login #login:after {
    content: '';
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 80px;
    height: 80px;
    background: #f0f4f8;
    border-radius: 50%;
    opacity: 0.5;
    z-index: -1;
}