/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Estilo do corpo */
body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #1b1b1b, #212121); /* Gradiente de fundo */
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Container principal */
.forgot-container {
    background-color: rgba(33, 33, 33, 0.9); /* Fundo semi-transparente */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

/* Cabeçalho */
.forgot-header {
    margin-bottom: 20px;
}

.logo {
    width: 100px;
    height: auto;
    margin-bottom: 10px;
}

h1 {
    font-size: 24px;
    margin-bottom: 10px;
}

/* Mensagens de erro e sucesso */
.error {
    background-color: #ff4c4c;
    color: #ffffff;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.success {
    background-color: #4caf50;
    color: #ffffff;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 10px;
}

/* Grupo de formulários */
.form-group {
    margin-bottom: 15px;
    text-align: left;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

input[type="email"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #444444;
    border-radius: 4px;
    background-color: #333333;
    color: #ffffff;
}

/* Ações do formulário */
.form-actions {
    margin-top: 20px;
}

.btn-forgot {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 4px;
    background: linear-gradient(90deg, #43bbbd, #0979b9);
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-forgot:hover {
    background: linear-gradient(90deg, #69eaec, #0b93e3);
}

/* Ações adicionais */
.additional-actions {
    margin-top: 15px;
}

.additional-actions a {
    background: linear-gradient(90deg, #43bbbd, #0979b9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    transition: background 0.3s ease;
}



.additional-actions a:hover {
    color: #0056b3;
}
