/* Cores controladas por franqueadopro-theme.css (variaveis --fp-*) */
* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: Georgia, 'Times New Roman', Times, serif;
};

body {
    background-color: var(--fp-bg, #1a1d23);
}

a {
    font-size: 16px;
    color: var(--fp-accent-text, #93c5fd);
    line-height: 1.4;
    text-align: center;
}

a:hover {
    text-decoration: none;
}

input {
    outline: none;
    border: none;
    color: var(--fp-text, #e8eaed);
    line-height: 1.2;
    font-size: 18px;
    display: block;
    width: 100%;
    background: transparent;
    height: 62px;
    padding: 0 20px 0 38px;
}

input::placeholder {
    color: var(--fp-text-muted, #9aa0a6);
}

.container-login {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 15px;
}

.container-login > div {
    width: 390px;
    background: var(--fp-surface, #252830);
    border: 1px solid var(--fp-border, #3c4048);
    border-radius: 10px;
    position: relative;
    padding: 50px 0 90px 0;
    box-shadow: 0 12px 32px rgba(0, 0, 0, .45);
}

.form-allguardian > .fp-login-logo {
    text-align: center;
    width: 100%;
    padding-bottom: 24px;
    background-color: transparent;
    border: none;
    margin-bottom: 0;
}

.form-allguardian > span {
    font-size: 30px;
    color: var(--fp-text, #e8eaed);
    line-height: 1.2;
    text-align: center;
    width: 100%;
    display: block;
    padding-bottom: 30px;   
}

.form-allguardian > div {
    width: 100%;
    position: relative;
    background-color: var(--fp-input-bg, #1e2229);
    border: 1px solid var(--fp-border, #3c4048);
    border-radius: 3px;
    margin-bottom: 16px;
}

.btn-allguardian {
    font-size: 16px;
    color: #fff;
    line-height: 1.2;
    padding: 0 20px;
    width: 100%;
    height: 62px;
    background-color: var(--fp-primary, #3b82f6);
    outline: none;
    border: none
}

.btn-allguardian:hover{
    cursor: pointer;
    background-color: var(--fp-primary-hover, #2563eb);
}