*{
    margin: 0;
    padding: 0;
    outline: 0;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body{
    height: 100vh;
    background-image: url('../gambar/4.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.container{
    position: fixed;
    top: 50%;
    left: 10%;
    transform: translate(-50%,-50%);
    padding: 20px 25px;
    width: 300px;
    height: 100vh;
    
    background-color: white;
    box-shadow: 0 0 10px black;
}
.container h1{
    margin-top: 50px;
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 4px solid black;
}
.container form input{
    width: calc(100% - 20px);
    font-size: larger;
    padding: 8px 10px;
    margin-bottom: 10px;
    border: none;
    border-bottom: 2px solid black;
}
.container form button{
    color: white;
    width: 50%;
    padding: 5px 0;
    border: none;
    background-color: #1b1369;
    font-size: 15px;
    box-shadow: 0 0 5px black;
}
.container form button:hover{
    cursor: pointer;
    background-color: aqua;
    color: #1b1369;
}
.container form p{
    font-size: 12px;
    margin-bottom: 10px;
}
.container form p a{
    text-decoration: none;
    color: #1b1369;
}

@media only screen and (max-width: 550px){
    .container {
        position: relative;
        top: 50%;
        left: 50%;
        height: 50%;
        transform: translate(-50%,-50%);
    }
}