/* @import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');

body{
    margin: 0;
    padding: 0;
    /* font-family: 'Montserrat', sans-serif; */
    font-family: 'Roboto', sans-serif;

}

.loginbox{
    width: 360px;
    height: 420px;
    border-radius: 5%;
    background-color: rgba(0, 0, 0, .7);
    color: #fff;
    top: 50%;
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
    padding: 70px 30px;
}

.loginbox img{
    width: 100px;
    border-radius: 50%;
    position: absolute;
    top: -50px;
    left: calc(50% - 50px);
}

h1{
    margin: 0;
    padding: 0 0 10px;
    text-align: center;
    font-size: 30px;
}

.loginbox p{
    margin: 0;
    padding: 0;
    font-weight: bold;
}

.loginbox input{
    width: 100%;
    margin-bottom: 20px;
}

.loginbox input[type="password"]{
    margin-bottom: 5px;
}

.loginbox input[type="email"], input[type="password"]{
    border: none;
    border-bottom: 1px solid #fff;
    background: transparent;
    outline: none;
    height: 40px;
    color: #fff;
}

.loginbox input[type="button"]{
    border: none;
    outline: none;
    height: 40px;
    background: rgba(150, 150, 150);
    color: #fff;
    font-size: 18px;
    border-radius: 5px;
}

.loginbox input[type="button"]:hover{
    cursor: pointer;
    background: rgb(100, 100, 100);
}

.loginbox a{
    font-size: 15px;
    margin-bottom: 15px;
    text-decoration: none;
    color: dodgerblue;
}
