/* Bracell - Custom Login Page */

/* Background */
body.login {
    background-color: #eae9d6;
    font-family: 'gotham-narrow', 'Inter', sans-serif;
}

/* Logo */
.login h1 a {
    background-image: url('../../../uploads/2026/03/logo.png') !important;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 320px;
    height: 80px;
    margin-bottom: 30px;
}

/* Form container */
.login form {
    background: #ffffff;
    border: none;
    border-radius: 0;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    padding: 30px 24px;
}

/* Labels */
.login form .forgetmenot label,
.login label {
    font-family: 'gotham-narrow', 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #000000;
}

/* Inputs */
.login form input[type="text"],
.login form input[type="password"] {
    font-family: 'gotham-narrow', 'Inter', sans-serif;
    font-size: 16px;
    border: 2px solid #eae9d6;
    border-radius: 0;
    padding: 10px 12px;
    background: #f0efe2;
    color: #000000;
    transition: border-color 0.2s ease;
}

.login form input[type="text"]:focus,
.login form input[type="password"]:focus {
    border-color: #6fdbfc;
    box-shadow: 0 0 0 1px #6fdbfc;
    outline: none;
    background: #ffffff;
}

/* Submit button */
.login form .submit .button-primary {
    font-family: 'gotham-narrow', 'Inter', sans-serif;
    font-weight: 900;
    font-size: 16px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background-color: #000000;
    border: none;
    border-radius: 0;
    padding: 10px 24px;
    height: auto;
    line-height: 1.4;
    transition: background-color 0.2s ease, transform 0.1s ease;
    width: 100%;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.login form .submit .button-primary:hover {
    background-color: #333333;
}

.login form .submit .button-primary:active {
    transform: scale(0.98);
}

.login form .submit .button-primary:focus {
    box-shadow: 0 0 0 2px #6fdbfc;
}

/* "Remember me" checkbox */
.login form input[type="checkbox"] {
    border: 2px solid #000000;
    border-radius: 0;
}

.login form input[type="checkbox"]:checked {
    background-color: #000000;
    border-color: #000000;
}

.login form input[type="checkbox"]:focus {
    box-shadow: 0 0 0 2px #6fdbfc;
    border-color: #000000;
}

/* Links below form */
.login #nav,
.login #backtoblog {
    text-align: center;
}

.login #nav a,
.login #backtoblog a {
    font-family: 'gotham-narrow', 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #000000;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.2s ease;
}

.login #nav a:hover,
.login #backtoblog a:hover {
    color: #333333;
    opacity: 0.75;
}

/* Error / messages */
.login .message,
.login .success {
    border-left: 4px solid #6fdbfc;
    font-family: 'gotham-narrow', 'Inter', sans-serif;
    font-size: 14px;
    border-radius: 0;
}

.login #login_error {
    border-left: 4px solid #fc8f92;
    font-family: 'gotham-narrow', 'Inter', sans-serif;
    font-size: 14px;
    border-radius: 0;
}

/* Privacy policy link */
.login .privacy-policy-page-link a {
    font-family: 'gotham-narrow', 'Inter', sans-serif;
    font-size: 13px;
    color: #888888;
}

/* Language switcher */
.language-switcher {
    font-family: 'gotham-narrow', 'Inter', sans-serif;
}

/* Hide WordPress logo text */
.login h1 a {
    text-indent: -9999px;
    overflow: hidden;
}

/* Responsive */
@media (max-width: 480px) {
    .login h1 a {
        width: 260px;
        height: 65px;
    }

    .login form {
        padding: 24px 20px;
    }
}
