@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@300..700&display=swap');

* {
    font-family: "Fira Code", monospace;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: linear-gradient(to bottom, #d9e2ee 0%, #b1caf0 100%); 
}

h1 {
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 2px;
    text-align: center;
    color: #1e3a8a; /* Azul escuro */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    
}

form {
    margin: 20px 0;
    padding: 20px;
    display: flex;
    flex-flow: column wrap;
    justify-content: space-evenly;
    gap: 20px;
    border-radius: 12px;
    height: 300px;
    align-items: center;
    width: 80vw;
    max-width: 500px;
    background: white;
    
    border: 1px solid #ddd;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.6), 
    0px 0px 10px rgba(0, 120, 255, 0.6);
    
}

input, select {
    width: 100%;
    height: 50px;
    text-align: center;
    font-weight: bold;
    border-radius: 5px;
    font-size: 18px;
    border: 2px solid #ccc;
    transition: 0.3s ease-in-out;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

input:focus, select:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0px 3px 8px rgba(0, 123, 255, 0.2);
}

button {
    padding: 10px;
    width: 200px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    background: #007bff;
    color: white;
    font-size: 16px;
    font-weight: bold;
    box-shadow: 0px 3px 8px rgba(0, 123, 255, 0.2);
    transition: 0.3s;
}

button:hover {
    background: #0056b3;
}

p {
    border: 3px solid #007bff;
    padding: 20px;
    background: white;
    border-radius: 8px;
    max-width: 65%;
    font-size: 18px;
    font-weight: bold;

    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.6), 
                -4px -4px 10px rgba(0, 120, 255, 0.6);
}

@media (max-width: 400px) {
    input,
    select {
        font-size: 14px;
    }

    button {
        font-size: 14px;
        width: 150px;
    }

    form {
        gap: 15px; /* Reduz o espaçamento para caber melhor */
    }

    p{
        padding: 12px;
       
        font-size: 15px;
    }
}