/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    background: linear-gradient(135deg, #1A3E4C, #347B98);
}

/* CONTAINER */
.container {
    width: 350px;
    padding: 40px;

    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);

    border-radius: 15px;

    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);

    text-align: center;
    color: white;
}

/* TÍTULO */
.container h2 {
    margin-bottom: 20px;
}
.container {
    animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* FORM */
form {
    display: flex;
    flex-direction: column;
}

/* INPUTS */
input {
    padding: 12px;
    margin: 10px 0;

    border: none;
    border-radius: 8px;

    outline: none;

    font-size: 14px;
}
input::placeholder {
    color: #999;
}
input:focus {
    outline: 2px solid #4facfe;
}

/* BOTÃO */
button {
    margin-top: 15px;
    padding: 12px;

    border: none;
    border-radius: 8px;

    background: #347B98;
    color: #E4F1F6;

    font-weight: bold;
    cursor: pointer;

    transition: 0.3s;
}

/* HOVER BOTÃO */
button:hover {
    background: #67AFCB;
    transform: scale(1.05);
}

/* LINK */
a {
    color: #00c6ff;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

/* TEXTO */
p {
    margin-top: 15px;
    font-size: 14px;
}

/* DASHBOARD */
#userName {
    margin: 20px 0;
    font-size: 18px;
}

/* BOTÃO LOGOUT */
#logout {
    background: #ff6b6b;
}

#logout:hover {
    background: #ff4b4b;
}
/* MENSAGENS DE ERRO */
.message {
    margin-top: 10px;
    font-size: 14px;
    font-weight: bold;
}

.error {
    color: #ff6b6b;
}

.success {
    color: #51cf66;
}