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

html,body {
    height: 100%;
    font-family: sans-serif; 
    background: linear-gradient(to right, rgb(75, 105, 105), rgb(75, 170, 170), rgb(4, 251, 251));
}


.container {
    width: 90%;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
}


.form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.form-class {
    background-color: white;
    border-radius: 10px;
    width: 100%;
    max-width: 650px;
    height: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    gap: 2rem;
    padding: 3rem;
    color: rgb(104, 152, 152);
    font-size: 2rem;
    font-weight: bold;
}

.form-class input,button {
    width: 90%;
    max-width: 350px;
    background-color: rgb(77, 174, 174);
    border-radius: 5px;
    border: none;
    padding: 0.7rem;
    font-size: 1.1rem;
    color: black;
    font-weight: bold;
    transition: 1s;
}
.form-class button:hover {
    background-color: rgb(73, 118, 118);
    cursor: pointer;
}

@media (max-width: 768px) {
    .form-class {
        padding: 1.5rem;
        font-size: 1rem;
        height: auto;
    }
}






