.user-bg {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 0%;
    top: 0%;
    height: 100vh;
    background: rgb(63,133,86);
    background: linear-gradient(45deg, rgba(63,133,86,1) 0%, rgba(175,238,196,1) 100%);
}

.registerForm {
    height: 40rem;
    width: 30%;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    padding-left: 3rem;
    padding-right: 2rem;
    justify-content: center;
    background-color: rgb(255, 255, 255);
    box-shadow: 5px 10px 12px 10px rgb(62, 128, 85);
}

.registerForm p {
    color: rgb(168, 168, 168);
}

.inpoption {
    display: flex;
    flex-direction: column;
}

.inpoption input {
    border: 1px solid rgb(224, 224, 224);
    height: 3rem;
}

.inpoption input:focus {
    outline: none !important;
    border: 3px solid rgb(62, 128, 85);
}

.inpoption input::placeholder {
    padding-left: 1rem;
}

.labelname {
    color: grey;
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 4px;
}

#regform {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    height: 70%;
}