body {
    background-image: url('../assets/img/9BMQ.gif');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    overflow: hidden;
}

.form-container {
    background: rgba(255, 255, 255, 0.15); /* Transparente elegante */
    backdrop-filter: blur(15px); /* desenfoque tipo glassmorphism */
    -webkit-backdrop-filter: blur(15px);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    width: 100%;
    max-width: 500px;
    box-sizing: border-box;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeIn 0.8s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

h2 {
    color: #ffffff;
    margin-bottom: 25px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input, select {
    padding: 12px;
    font-size: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
    outline: none;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

input::placeholder,
select {
    color: #e0f2f1;
}

input:focus,
select:focus {
    border-color: #b2dfdb;
    background-color: rgba(255, 255, 255, 0.35);
}

button {
    background: #26a69a;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

button:hover {
    background: #00796b;
}

p {
    margin-top: 20px;
    color: #e0f2f1;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

a {
    text-decoration: none;
    color: #80deea;
    font-weight: bold;
    transition: color 0.2s ease;
}

a:hover {
    color: #00acc1;
}
