/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: 'Arial', sans-serif;
    background: #111111; /* Azul escuro */
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}

/* Container */
.container {
    background: rgba(0, 0, 0, 0.7); /* Preto semitransparente */
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    width: 100%;
}

/* Headings */
h1 {
    margin-bottom: 20px;
    font-size: 2em;
    color: #004e92; /* Azul escuro */
}

/* Form Styling */
form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

label {
    margin-bottom: 5px;
    font-weight: bold;
}

input[type="text"],
input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #004e92;
    background: rgba(255, 255, 255, 0.1); /* Fundo branco semitransparente */
    color: #fff;
    outline: none;
}

input[type="submit"],
.button-link {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    background: #004e92; /* Azul escuro */
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    display: inline-block;
    transition: background 0.3s ease;
    margin-top: 10px;
}

input[type="submit"]:hover,
.button-link:hover {
    background: #1a73e8; /* Azul claro */
}

/* Responsive Design */
@media (max-width: 480px) {
    .container {
        padding: 20px;
    }

    h1 {
        font-size: 1.5em;
    }

    label,
    input[type="text"],
    input[type="email"],
    input[type="password"],
    input[type="submit"],
    .button-link {
        font-size: 0.9em;
    }
}

/* Notifications */
.notification {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 15px;
    border-radius: 4px;
    font-size: 1.1em;
    z-index: 9999;
}

.notification.error {
    background-color: #ff3333; /* Vermelho */
}

.notification.success {
    background-color: #33cc33; /* Verde */
}
