body {
    background: url('img/car1.gif') no-repeat center;
    background-size: cover;
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;

}

.form-container {
    background-color: rgb(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    color: rgb(255, 0, 0);
    margin-bottom: auto;
    margin-top: auto;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    border-color: rgb(0, 0, 0);
    border-width: 3px;
    border-style: solid;
    padding-bottom: 10px;
    border-radius: 40px;
    width: 30%;
    animation: fadeIn 4s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

input {
    height: 40px;
    width: 200px;
    border-radius: 10px;
}

#button {
    background-color: rgb(255, 0, 0, 0.9);
    color: rgb(32, 27, 27);
    border-color: rgb(32, 27, 27);
    border-style: solid;
    border-radius: 40px;
    height: 60px;
    width: 210px;
    padding: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

h1 {
    font-size: 25px;
}

.message-container {
    background-color: rgb(255, 255, 255, 0.9);
    color: rgb(255, 0, 0);
    padding: 20px;
    text-align: center;
}