*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}
body{
    display: flex;
    justify-content:center;
    align-items: center;
    min-height: 100vh;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
}
.container{
    width: 100%;
    height: 670px;
    display: flex;
    max-width: 550px;
    background: #fff;
    border-radius: 0px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
}
.login{
    width: 100%;
}
form{
    width: 300px;
    margin: 129px auto;
}
h1{
    margin: 20px;
    text-align: center;
    font-weight: bolder;
    text-transform: uppercase;
    font-size: 20px
}

p{
    text-align: center;
    margin: 10px;
    font-size: 12px
}
hr{
    border-top: 2px solid #636363;
}

.pic img{
    width: 100%;
    height: auto;
}

.logo img{
    width: 100px;
    height: 100px;
}

form label{
    display: block;
    font-size: 13px;
    font-weight: 520;
    padding: 7px;
    margin-top: 8px;
}
input{
    font-size: 11px;
    width: 100%;
    margin: 2px;
    border: none;
    outline: none;
    padding: 8px;
    border-radius: 5px;
    border: 0px solid gray;
    background: #F2F2F2;
}
button{
    border: none;
    outline: none;
    padding: 8px;
    width: 100%;
    color: #fff;
    font-size: 12px;
    cursor: pointer;
    margin-top: 22px;
    border-radius: 5px;
    background: #5c5c5c;
}
button:hover{
    background: #424242;
}
p{
    margin: 20px;
}
a{
    color: black;
    text-decoration: none;
}
