* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:'Gill Sans', 'Gill Sans MT' , Calibri, 'Trebuchet MS', sans-serif;

}

body{
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 100vh;
    background-image: url('bg.jpg');
}
.container{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 75px;
    max-width: 800px;
    max-height: 500px;
    background-color: rgb(244, 239, 180);
    border-radius: 75px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0,1);
}
.login{
    width: 400px;
}
form{
    width: 300px;
    margin: 60px auto;
}
h1{
    margin: 20px;
    text-align: center;
    font-weight: bolder;
    text-transform: uppercase;
    font-size: 25px;
}
hr{
    border-top: 2px solid rgb(255, 183, 0);
}
p{
    text-align: center;
    margin: 10px;
}
.right img {
    width: 300px;
    height: 270px;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    box-shadow: 5px 5px 5px black;
}
form label{
    display: block;
    font-size: 16px;
    font-weight: 600;
    padding: 5px;
}
input{
    width: 100%;
    margin: 2px;
    border:none;
    outline: none;
    padding: 8px;
    border-radius: 5px;
    border: 1px solid gray;
}
button{
    border: none;
    outline: none;
    padding: 8px;
    width: 300px;
    color: rgb(0, 0, 0);
    font-size: 16px;
    cursor:pointer;
    margin-top: 20px;
    border-radius: 5px;
    background: rgb(255, 183, 0);
}
button:hover{
    background: yellow;
}
@media (max-width: 880px){
    .container{
        width: 100%;
        max-width: 750px;
        margin-left: 20px;
        margin-right: 20px;
    }
    form {
        width: 300px;
        margin: 20px auto;
    }
    .login{
        width: 400px;
        padding: 20px;
    }
    button{
        width: 100%;
    }
    .right img{
        width: 100%;
        height: 100%;
    }
}
