/**
 * Veroc Web Login Styles
 * @package Veroc_Web
 */

body.login {
    background: linear-gradient(135deg, #0F172A 0%, #1e293b 100%);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

body.login #login {
    padding-top: 100px;
}

body.login h1 a {
    background-image: none;
    text-indent: 0;
    width: auto;
    height: auto;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    text-align: center;
    display: block;
    margin-bottom: 20px;
}

body.login form {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    padding: 40px;
    border: none;
}

body.login label {
    color: #1E293B;
    font-weight: 500;
    font-size: 14px;
}

body.login input[type="text"],
body.login input[type="password"] {
    border: 2px solid #E2E8F0;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 16px;
    transition: all 0.2s;
}

body.login input[type="text"]:focus,
body.login input[type="password"]:focus {
    border-color: #2563EB;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    outline: none;
}

body.login .button-primary {
    background: #2563EB;
    border-color: #2563EB;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    height: auto;
    transition: all 0.2s;
}

body.login .button-primary:hover {
    background: #1D4ED8;
    border-color: #1D4ED8;
    transform: translateY(-1px);
}

body.login #nav,
body.login #backtoblog {
    text-align: center;
}

body.login #nav a,
body.login #backtoblog a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s;
}

body.login #nav a:hover,
body.login #backtoblog a:hover {
    color: white;
}

body.login .message,
body.login .success,
body.login #login_error {
    border-radius: 8px;
    border-left-width: 4px;
}
