/* 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);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #fff;
}

/* Container do registro */
.register-container {
    background: rgba(33, 33, 33, 0.9);
    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 do registro */
.register-header {
    margin-bottom: 20px;
}

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

h1 {
    font-size: 24px;
    color: #fff;
}

/* Estilo dos campos do formulário */
.form-group {
    margin-bottom: 15px;
    text-align: left;
}

label {
    display: block;
    margin-bottom: 5px;
    color: #ccc;
}

input[type="text"],
input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 4px;
    background: #333;
    color: #fff;
    font-size: 16px;
}

input::placeholder {
    color: #aaa;
}

/* Botão de registro */
.btn-register {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 4px;
    background: linear-gradient(90deg, #69eaec, #0b93e3);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-register:hover {
    background: linear-gradient(90deg, #43bbbd, #0979b9);
}

/* Links adicionais */
.additional-actions {
    margin-top: 15px;
}

.additional-actions a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}

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

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

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

/* Botão de login */
.btn-login {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    background: linear-gradient(90deg, #69eaec, #0b93e3);
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn-login:hover {
    background: linear-gradient(90deg, #43bbbd, #0979b9);
}
