/* Tách! Studio - Custom Wagtail Admin Theme */

:root {
    --w-color-primary: #70020f;
    --w-color-primary-200: #fedee1;
}

/* Login page background + vertical center */
.login {
    background: #70020f !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 100vh !important;
}

/* Login box */
.login .content-wrapper {
    background: rgba(0, 0, 0, 0.2) !important;
}

/* Login button */
.login input[type="submit"],
.login button[type="submit"] {
    background-color: #fedee1 !important;
    color: #70020f !important;
    border: none !important;
    font-weight: 600;
}

.login input[type="submit"]:hover,
.login button[type="submit"]:hover {
    background-color: #fff0f1 !important;
    color: #70020f !important;
}

/* Input focus state */
.login input[type="text"]:focus,
.login input[type="password"]:focus,
.login input[type="email"]:focus {
    border-color: #fedee1 !important;
    outline-color: #fedee1 !important;
}

/* Links */
.login a {
    color: #fedee1 !important;
}

.login a:hover {
    color: #fff0f1 !important;
}
