/* WRAPPER */
.recuperar-wrap {
    max-width: 480px;
    margin: 50px auto 70px;
    padding: 0 20px;
}

.recuperar-wrap > div > h2 {
    color: #1e3a8a;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 10px;
    font-size: 24px;
    margin-bottom: 20px;
}

/* CARD */
.recuperar-card {
    background: white;
    padding: 32px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.recuperar-icone {
    font-size: 44px;
    text-align: center;
    margin-bottom: 16px;
}

.recuperar-desc {
    font-size: 15px;
    color: #4b5563;
    text-align: center;
    line-height: 1.6;
    margin: 0 0 24px;
}

.email-mascarado {
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    color: #1e3a8a;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 6px;
    padding: 10px;
    margin-bottom: 20px;
}

/* CAMPOS */
.campo {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 18px;
}

.campo label {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

.campo input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #d1d5db;
    border-radius: 5px;
    font-size: 14px;
    color: #374151;
    outline: none;
    transition: border-color 0.3s;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.campo input:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 2px rgba(37,99,235,0.15);
}

.campo input.erro { border-color: #ef4444; }
.campo input.ok   { border-color: #22c55e; }

.campo .msg       { font-size: 12px; min-height: 15px; }
.campo .msg.erro  { color: #dc2626; }
.campo .msg.ok    { color: #16a34a; }
.campo .msg.dica  { color: #9ca3af; }

/* CÓDIGO 6 DÍGITOS */
.codigo-wrap {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 8px 0;
}

.cod-input {
    width: 46px !important;
    height: 54px;
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    border: 1.5px solid #d1d5db !important;
    border-radius: 8px !important;
    padding: 0 !important;
    color: #1e3a8a;
    transition: border-color 0.2s;
}

.cod-input:focus {
    border-color: #2563eb !important;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.15) !important;
}

/* SENHA COM OLHO */
.senha-wrap { position: relative; }
.senha-wrap input { padding-right: 44px; }

.btn-olho {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: #9ca3af;
    padding: 0;
    line-height: 1;
    transition: color 0.3s;
}

.btn-olho:hover { color: #2563eb; }

/* FORÇA DA SENHA */
.forca-wrap { margin-top: 6px; }

.forca-barras {
    display: flex;
    gap: 4px;
    margin-bottom: 4px;
}

.forca-barra {
    flex: 1;
    height: 4px;
    border-radius: 2px;
    background: #e5e7eb;
    transition: background 0.3s;
}

.forca-barra.fraca { background: #ef4444; }
.forca-barra.media { background: #f59e0b; }
.forca-barra.forte { background: #22c55e; }

.forca-label { font-size: 12px; color: #6b7280; }

/* REENVIAR */
.reenviar {
    text-align: center;
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 16px;
}

.reenviar a {
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
}

.reenviar a:hover { text-decoration: underline; }

/* BOTÃO PRINCIPAL */
.btn-recuperar {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(37,99,235,0.4);
    font-family: Arial, sans-serif;
    box-sizing: border-box;
    text-align: center;
}

.btn-recuperar:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 28px rgba(37,99,235,0.55);
}

/* VOLTAR */
.link-voltar {
    text-align: center;
    margin-top: 14px;
    font-size: 14px;
}

.link-voltar a {
    color: #6b7280;
    text-decoration: none;
    font-weight: 500;
}

.link-voltar a:hover { color: #1e3a8a; text-decoration: underline; }
