body{
    background-color: var(--brown);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(to bottom, color-mix(in srgb, var(--brown) 90%, transparent), color-mix(in srgb, var(--black) 90%, transparent)), url(../../resources/image/home/hero.png);
    background-size: cover;
}

.register-holder{
    /* background: linear-gradient(var(--beige), var(--beige)) padding-box,
              linear-gradient(to top, var(--black), var(--green)) border-box; */
    background-color: var(--beige);
    border: 6px solid var(--green);
    width: 50%;
    border-radius: 20px;
    overflow: hidden;
}

.logo{
    display: flex;
    height: 80px;
    margin-block: auto;
    background-color: var(--white);
    padding-inline: 20px;
    align-items: center;
    justify-content: center;
    border-bottom: 6px solid var(--green);
}

.logo-image{
    height: 65%;
    margin-block: auto;
    fill: var(--green);
}

.logo-text{
    color: var(--green);
    font-family: ovo;
    font-size: 1.9em;
    margin-block: auto;
    font-weight: 600;
    margin-left: .5%;
}

.input-holder{
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.input-section{
    padding-block: 10px;
    width: 50%;
}

.input-section input{
    width: 100%;
    height: 30px;
    background-color: var(--white);
    color: var(--green);
    font-family: now;
    font-size: 0.9em;
    border: 0 none;
    border-radius: 3px;
    outline: 2px solid var(--green);
    text-align: center;
}

.input-section input::placeholder{
    color: var(--green);
    opacity: .7;
    text-align: center;
}

.alternate-register-section{
    display: flex;
    justify-content: center;
    background-color: var(--green);
    margin-top: 10px;
}

.alternate-register-section p{
    color: var(--white);
    font-family: now;
}

.alternate-register-section a{
    color: var(--beige);
    font-family: now-bold;
}

.submit-section{
    display: flex;
    justify-content: center;
    margin-block: 10px;
}

.submit-section a{
    background-color: var(--brown);
    padding-inline: 40px;
    padding-block: 10px;
    color: var(--beige);
    border: 4px solid var(--green);
    border-radius: 10px;
    text-decoration: none;
}