body,html{
    margin: 0px;
    padding: 0px;
    height: 100%;
    background-color: #6763E6;
    display: flex;
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
}

.form_temp{
    background-color: rgb(255,255,255);
    width:300px;
    height: fit-content;
    padding: 20px;
    border: 1px solid black;
    border-radius: 10px;
    box-shadow: 0 0 10px 2px rgba(0,0,0,0.5);
    /* margin-top: 20%; */
}

.title{
    text-align: center;
}

.title .headline{
    /* background-color: blue; */
    font-weight: 600;
    margin-left: 15px;
    margin-right: 15px;
    font-size: 20px;
}

.title .head-message, .form-footer{
    color: #9ca0a4;
    font-size: small;
    text-align: center;
}

.user-details{
    /* background-color: blue; */
    line-height: 50px;
    width: 100%;
}


.input-box{
    padding: 0px;
    margin:0;
    width: 100%;
}

input{
    height: 30px;
    margin:0;
    width: 100%;
}

.button input[type=submit]{
    background-color: #6763E6;
    color: white;
    font-weight: 600;
    font-size: medium;
    border-radius: 2px;
    height: 35px;
}

.form-footer a{
    text-decoration: none;
    color: #6093DA
}

