*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    background:#f2f6fc;
    display:flex;
    justify-content:center;
    align-items:center;
    height:100vh;
}

.container{
    width:1100px;
    height:600px;
    background:#dfeeff;
    border-radius:20px;
    display:flex;
    padding:30px;
}

.left{
    width:50%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
}

.left img{
    width:320px;
}

.left h2{
    text-align:center;
    margin-top:20px;
    font-size:38px;
    line-height:55px;
    font-weight:bold;
}

.right{
    width:50%;
    background:white;
    border-radius:15px;
    padding:45px;
}

.right h1{
    text-align:center;
    margin-bottom:35px;
}

form{
    display:flex;
    flex-direction:column;
}

label{
    margin-top:10px;
    margin-bottom:8px;
    font-size:15px;
}

input,select{
    width:100%;
    height:48px;
    border:1px solid #d8d8d8;
    border-radius:8px;
    padding:0 15px;
    font-size:15px;
    outline:none;
}

.password{
    position:relative;
}

.password i{
    position:absolute;
    right:15px;
    top:16px;
    color:gray;
    cursor:pointer;
}

button{
    margin-top:35px;
    height:48px;
    border:none;
    border-radius:8px;
    background:#2f66db;
    color:white;
    font-size:17px;
    cursor:pointer;
}

button:hover{
    background:#1b54d2;
}