*{
box-sizing:border-box;
}
body{
    background: linear-gradient(90deg, rgba(36,71,102,1) 14%, rgba(34,48,84,1) 63%, rgba(0,61,125,1) 100%);
}
section{
    display: flex;
    align-items: center;
    height: 100vh;
    justify-content: center;
}
.container{
    max-width: 1280px;
    width: 100%;
    padding: 10px;
    margin: auto;
}

.login-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 70vh;
    margin:0 auto;
    width: 40%;
    padding: 30px 10px;
    background: #152238;
}
.login-content h2{
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    font-family: 'poppins',sans-serif;
    letter-spacing: 2px;
    color: white;
}
.login-content img {
    width: 60%;
    margin: 0 auto;
}
.login-content input{
    padding: 10px 20px;
    border-radius: 5px;
    font-family: 'poppins',sans-serif;
    outline: none;
    border: 1px solid grey;
}
.input {
    display: flex;
    flex-direction: column;
    width: 400px;
    gap: 20px;
    margin: 10px auto;
}
.checkbox {
    display: flex;
    justify-content: space-between;

    font-family: 'poppins',sans-serif;
    /* margin: 10px auto; */
    color: white;
    /* width: 90%; */
}

.copyright,.copyright a{
    color: white;
    font-size: 14px;
    font-family: 'poppins',sans-serif;
    margin:10px auto;
    text-align: center;
}
input[type="submit"] {
    background: black;
    border: 0;
    color: white;
}
@media only screen and (max-width:1024px){
.login-content{
width:100% !important;
height:90vh !important;
}
.input{
width:100%;
}
.checkbox{
flex-direction:column;
align-items:center;
gap:20px;
}
}