/* Limpeza Geral */
body {
    background: #f4f7f9;
    font-family: 'Inter', Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.recovery-card {
    background: #fff;
    width: 100%;
    max-width: 420px;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.recovery-card h2.title {
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    color: #333;
}

.recovery-card p {
    font-size: 14px;
    color: #666;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.5;
}

/* Estrutura do Campo */
.field-wrapper {
    margin-bottom: 20px;
}

.field-wrapper label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 5px;
}

/* O "Segredo" para não quebrar: display flex no container direto */
.input-container {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
}

.icon-box {
    background: #f8f9fa;
    padding: 10px 15px;
    border-right: 1px solid #ddd;
    color: #666;
    display: flex;
    align-items: center;
    min-width: 45px;
    justify-content: center;
}

.input-container input {
    border: none !important;
    padding: 10px 15px;
    flex: 1;
    font-size: 15px;
    outline: none;
}

/* Botão */
.btn-submit {
    width: 100%;
    background: #027498;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
}

.btn-submit:hover {
    background: #01526b;
}

.footer-link {
    text-align: center;
    margin-top: 25px;
}

.footer-link a {
    color: #888;
    text-decoration: none;
    font-size: 14px;
}

.alert {
    background: #fff5f5;
    color: #c53030;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 13px;
    text-align: center;
    border: 1px solid #feb2b2;
}

/* Remove assinatura antiga */
#dsntech { display: none !important; }