html{
    height: 100%;
}
body{
    margin: 0;
    padding: 0;
}

.container{
    margin:0 auto;
    margin-top: 30px;
    padding: 0;
    width: 350px;
    height: 100%;
    border-radius: 30px;
    box-shadow: 16px 20px rgb(226, 206, 206);
    background-color:black;
    display: grid;
}

.logo{
    display: table-row;
    margin-top: 0;
    padding: 0 0 20px;
    padding-top: 5px;
    font-size: 80px;
    text-align: center;
    font-size: 20px;
    color: white;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    background-color: #ff652f;
    border-top-right-radius: 26px;
    border-top-left-radius: 25px;
}
/* login form */
.input{
    background-color: #93dde2;
    margin-top: 1px;
    padding: 25px;
    height: 280px;
    vertical-align: middle;
    border-bottom-right-radius: 25px;
    border-bottom-left-radius: 25px;
}
/* register form */
.registerForm{
    background-color: #93dde2;
    margin-top: 1px;
    padding: 25px;
    padding-top: 10px;
    padding-bottom: 40px;
    height: 320px;
    vertical-align: middle;
    border-bottom-right-radius: 25px;
    border-bottom-left-radius: 25px;
}
#myform{
    text-align: center;
    margin: auto;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.input-form input[type="text"],
.input-form input[type="email"],
.input-form input[type="password"]{
    margin: 4px 2px;
    padding: 8px 5px;
    border: none;
    border-bottom: 1px solid black;
    outline: 2px;
    font-size: 20px;
    height: 40%;
    width: 65%;
    border-radius: 13px;
    text-align: center;
    transition: 0.4s ease-in-out;
    box-sizing: border-box;
    background-color: rgb(241, 250, 252);
}
.input-form input[type="password"]:hover{
    width: 85%;
}
.input-form input[type="text"]:hover{
    width: 85%;
}
.input-form input[type="email"]:hover{
    width: 85%;
}
.input-form input[type="submit"]{
    background: #c0c0c0;
    font-size: 20px;
    cursor: pointer;
    border-radius: 20px;
    width: 65%;
    height: 40px;
    font-family: Arial, Helvetica, sans-serif;
    color: rgb(15, 2, 88);
}
.input-form input[type="submit"]:hover{
    background-color: #ff652f;
    color: white;
}
/* links */
.input-form a{
    color: whitesmoke;
    font-size: 18px;
    font-family: Arial, Helvetica, sans-serif;
    text-decoration: none;
    margin: 29px 0px 25px;
}
/* change text color */ 
.input-form a:hover{
    color: rgb(16, 17, 16);
}
/* footer */
.footer{
    text-align: center;
    padding-top: 5px;
    font-size: 15px;
    font-family: 'Times New Roman', Times, serif;
}
@media screen and(min-width:700px){
    .container{
        /* Fix the black background on mobile devices. */
        background-color: #ff652f;
    }
    .logo{
        width: 100%;
    }
}