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

.container {
    background-image: linear-gradient(to right bottom,  #363552,  #9e4741);
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container .form {
    width: 50%; 
    max-width: 500px; 
    height: auto; 
    border: 2px solid black;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 20px; 
}

.container .form h1 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 25px;
}

.container .form .in {
    width: 50%; 
    height: auto; 
    /* background: whitesmoke; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px; 
}

.container .form .in h4 {
    text-align: center;
    margin-bottom: 10px; 
}