
*{
    box-sizing:border-box;
    font-family: Arial, sans-serif;
}
body{
    margin:0;
    background:#020814;
}
.wrapper{
    max-width:1400px;
    margin:20px auto;
    background:#355a67;
    border-radius:40px;
    min-height:90vh;
    padding:30px 40px;
    position:relative;
    border:2px solid #5fa3c7;
}
.header{
    display:flex;
    justify-content:space-between;
    align-items:center;
}
.logo{
    font-size:22px;
    color:#fff;
    font-weight:bold;
}
.login-btn{
    background:#3b6fb6;
    color:#fff;
    padding:10px 22px;
    border-radius:8px;
    text-decoration:none;
    font-weight:bold;
    box-shadow:0 4px 0 #244c85;
}
.main{
    display:flex;
    justify-content:space-between;
    margin-top:80px;
}
.left{
    width:45%;
    color:#fff;
}
.left h1{
    font-size:48px;
    margin-bottom:10px;
    text-shadow:2px 2px 0 #000;
}
.line{
    width:320px;
    height:4px;
    background:#4fa3ff;
    margin:15px 0 25px;
}
.left h2{
    font-size:34px;
    line-height:1.2;
}
.right{
    width:45%;
}
.form-box{
    border:2px solid #fff;
}
.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
}
.form-row div{
    padding:14px;
    border:1px solid #fff;
    background:#d9e2ee;
    color:#003399;
    font-weight:bold;
}
.form-row.header div{
    background:#5484bd;
    color:#fff;
}
.footer{
    position:absolute;
    bottom:20px;
    width:100%;
    display:flex;
    justify-content:space-between;
    color:#fff;
    font-size:14px;
}
.footer a{
    color:#fff;
    text-decoration:none;
}
