@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:'Outfit',sans-serif;

    background:#111318;

    display:flex;

    justify-content:center;

    align-items:center;

    height:100vh;

    color:white;

}

.register-box{

    width:430px;

    background:#1A1E24;

    border:1px solid #2E343D;

    border-radius:18px;

    padding:45px;

}

.register-box h1{

    font-size:38px;

    margin-bottom:10px;

}

.register-box p{

    color:#9CA3AF;

    margin-bottom:35px;

}

input{

    width:100%;

    padding:16px;

    margin-bottom:18px;

    background:#101216;

    border:1px solid #313741;

    border-radius:10px;

    color:white;

    font-size:15px;

    transition:.25s;

}

input:focus{

    outline:none;

    border-color:#D9A441;

}

button{

    width:100%;

    padding:16px;

    background:#D9A441;

    border:none;

    border-radius:10px;

    font-size:16px;

    font-weight:700;

    cursor:pointer;

    transition:.25s;

}

button:hover{

    transform:translateY(-2px);

}

.error{

    background:#742B2B;

    padding:14px;

    border-radius:8px;

    margin-bottom:20px;

}

a{

    display:block;

    margin-top:25px;

    text-align:center;

    color:#D9A441;

}