*{
    --bg: #7C00FE;
    --el1: #F9E400;
    --el2: #FFAF00;
    --int: #F5004F;
    margin: 0;
    scroll-behavior: smooth;
}

body{
    width: 100vw;
    height: 100vh;
    background: var(--bg);
}

h1{
    width: 100%;
    text-align: center;
    position: relative;
    top: 5%;
    color: var(--el1);
}

form{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    height: 60%;
    width: 400px;
    background: var(--el2);
    display: flex;
    flex-direction: column;
    padding: 5%;
    border-radius: 5px;
}

label{
    font-size: 1.4rem;
    color: var(--int);
    padding: 1%;
}   

input{
    margin-left: 10%;
    margin-right: 5%;
    height: 8%;
    border: none;
    border-radius: 2px;
    background: var(--el2);
    border-bottom: 2px solid var(--int);
    font-size: 1.2rem;
    color: var(--bg);
}

input:focus{
    outline: none;
}

#regb{
    margin-left: 30%;
    margin-right: 30%;
    font-size: 1.4rem;
    background: var(--int);
    border: none;
    color: var(--el1);
    border-radius: 5px;
    cursor: pointer;
}