*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-color: #dadada;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
.form{
    border-radius: 20px;
    width: 500px;
    height: 400px;
    font-family: Arial, Helvetica, sans-serif;
    padding: 30px;
box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center; 
    flex-direction: column;
}
.cr{
    text-align: center;
    margin-top: 30px;
    font-size: 50px;
    color: royalblue;
}
.same{
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    font-size: 20px;
    border-radius: 5px;
    border: none;
    border-bottom: 2px solid #dadada;
}
.gpass{
    width: 40%;
    margin-top: 20px;
    padding: 10px;
    font-size: 15px;
    background-color: royalblue;
    color: white;
    font-weight: 600;
    border: none;
    margin-right: 60%;
    cursor: pointer;
    border-radius: 10px;
}
.cre{
     width: 80%;
    margin-top: 20px;
    padding: 10px;
    font-size: 20px;
    background-color: royalblue;
    color: white;
    font-weight: 600;
    border: none;
    /* margin-right: 60%; */
    cursor: pointer;
    border-radius: 50px; 
}