/* Fundo com imagem - herdado do body do login.css */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: url('../media/background.webp') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    box-sizing: border-box;
}

/* Container centralizado - mesmo estilo do login-container */
.login-container {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    box-sizing: border-box;
    color: white;
    text-align: center;
}

/* Estilo dos campos de input - igual ao login.css */
.login-container input[type="email"],
.login-container input[type="password"],
.login-container input[type="text"] {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 3px solid #b7a53c;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 16px;
    box-sizing: border-box;
}

.login-container input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

/* Botão - igual ao login.css */
.login-container button {
    width: 100%;
    padding: 12px;
    background-color: #758153;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 15px;
}

.login-container button:hover {
    background-color: #5e6844;
}

/* Mensagens - igual ao login.css */
.mensagem {
    margin-bottom: 15px;
    font-weight: bold;
}

.mensagem.erro {
    color: #ff6b6b;
}

.mensagem.sucesso {
    color: #8cff8c;
}

/* Links - igual ao login.css */
.link-cadastro {
    margin-top: 15px;
}

.link-cadastro a,
.back-link a {
    color: #b7a53c;
    text-decoration: none;
}

.link-cadastro a:hover,
.back-link a:hover {
    text-decoration: underline;
}

/* Estilos específicos para recuperação de senha */
.etapa-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}

.etapa-indicator::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 1;
}

.etapa-item {
    position: relative;
    z-index: 2;
    background: transparent;
    padding: 0 10px;
    text-align: center;
    flex: 1;
}

.etapa-numero {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 5px;
    font-weight: bold;
    border: 2px solid #b7a53c;
}

.etapa-item.ativa .etapa-numero {
    background: #b7a53c;
    color: #000;
}

.etapa-texto {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.etapa-item.ativa .etapa-texto {
    color: #b7a53c;
    font-weight: bold;
}

/* Input específico para código */
.codigo-input {
    text-align: center;
    font-size: 24px;
    letter-spacing: 8px;
    font-weight: bold;
    color: #b7a53c !important;
}

/* Caixa de informação */
.info-texto {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    margin: 20px 0;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border: 1px solid #b7a53c;
}

.info-texto strong {
    color: #b7a53c;
    font-size: 16px;
}

/* Link para reenviar código */
.reenviar {
    text-align: center;
    margin-top: 15px;
}

.reenviar a {
    color: #b7a53c;
    text-decoration: none;
    font-size: 14px;
}

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

/* Link de voltar */
.back-link {
    display: block;
    margin-top: 20px;
    color: #b7a53c;
    text-decoration: none;
    font-size: 14px;
}

.back-link:hover {
    text-decoration: underline;
}

/* Responsividade - igual ao login.css */
@media (max-width: 600px) {
    .login-container {
        padding: 20px;
        width: 95%;
    }

    .login-container input,
    .login-container button {
        font-size: 15px;
        padding: 10px;
    }
}

@media (max-width: 360px) {
    .login-container {
        padding: 15px;
    }

    .login-container h1 {
        font-size: 20px;
    }
}