html { height: 100%; display: flex; align-items: center; } body { width: 100%; } main { width: 100%; height: 100%; display: flex; flex-direction: row; align-items: center; } /*Common */ hr { width: 100%; } .border-left { border-left: ridge; padding-left: 6%; } /*Section titre*/ #title { width:60%; text-align: center; font-size: xxx-large; } /*Section login / register*/ #form { display: flex; flex-direction: row; height: 100%; } h1 { justify-self: center; } .flex-column { display: flex; flex-direction: column; justify-content: left; } .login-gap { gap: 20px; } .register-gap { gap: 75px; } #login-form, #register-form { display: grid; grid-template-columns: 1fr 1fr; grid-gap: 8% 2%; } #login-submit { grid-column: 2/2; grid-row: 3/3; justify-self: right; } #register-submit { grid-column: 2/2; grid-row: 7/7; justify-self: right; }