/* Fenix Login Theme Overrides */

body.body-login {
    background: #1A0E1C !important; /* fenix-dark */
}

.form-padding {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.authforms {
    background: #FCFCF4; /* fenix-light */
    border-radius: 16px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.12);
    color: #0E0E0E; /* fenix-text-dark */
}

.authforms__title {
    color: #0E0E0E;
}

.authforms__textinput {
    background: #fff;
    border: 1.5px solid #ccc;
    color: #0E0E0E;
    border-radius: 8px;
    transition: border-color 0.2s;
}

.authforms__textinput:focus {
    border-color: #E449AF; /* fenix-pink */
    outline: none;
}

.authforms__showpassword {
    color: #888;
    font-size: 1.2em;
}

.button.btn.btn-primary,
.btn.btn-primary {
    background: #E449AF;
    border: none;
    color: #fff;
    font-weight: 600;
    border-radius: 24px;
    box-shadow: none;
    position: relative;
    z-index: 1;
    overflow: hidden;
    text-shadow: 0px 0px 1px #000000cc;
}

.button.btn.btn-primary::before,
.btn.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #E449AF 0%, #DB4F25 100%);
    border-radius: 24px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.button.btn.btn-primary:hover::before,
.button.btn.btn-primary:focus::before,
.btn.btn-primary:hover::before,
.btn.btn-primary:focus::before {
    opacity: 1;
}

.button.btn.btn-primary:active::before,
.btn.btn-primary:active::before {
    background-position: right center;
}

.link-secondary {
    color: #E449AF;
    text-decoration: underline;
}

.link-secondary:hover {
    color: #DB4F25;
    text-decoration: underline;
}

a.external-provider {
    background: #4F0006;
    border: none;
    color: #fff;
}

a.external-provider:hover {
    background: #E449AF;
    color: #fff;
}
