body{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: rgb(255, 255, 255);
}

form{
    border: 1px solid wheat;
}

label{
    color: aliceblue;
}

.custom-form{
    background-color: #7abeec;
    padding: 20px;
    border-radius: 10px;
    width: 100%;
    max-width: 400px;
}

.custom-form input {
    background-color: #ffffff;
    border-radius: 5px;
}

.custom-form .btn{
    width: 100%;
}