/* === login_styles.css atualizado com efeitos 3D === */

body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f4f4f4;
}

.container {
    background: linear-gradient(145deg, #ffffff, #e6e6e6);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 10px 10px 30px rgba(0,0,0,0.15), -5px -5px 15px rgba(255,255,255,0.8);
    text-align: center;
    animation: fadeUp 0.6s ease forwards;
    max-width: 400px;
    width: 90%;
}

input {
    width: 100%;
    padding: 12px;
    margin: 12px 0;
    border: none;
    border-radius: 10px;
    box-shadow: inset 2px 2px 5px rgba(0,0,0,0.1), inset -2px -2px 5px rgba(255,255,255,0.7);
    outline: none;
    font-size: 16px;
}

button {
    background: #007bff;
    color: white;
    border: none;
    padding: 12px 25px;
    cursor: pointer;
    border-radius: 10px;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease, transform 0.2s ease;
    letter-spacing: 0.5px;
}

button:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

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