:root {
    background: transparent;
}

body {
    width: 100vw;
}

.registerMain {
    height: 100vh;
    width: 100vw;
}

.registerMain > .registerMainContent {
    width: 100%;
    margin-top: 3%;
    margin-left: 12%;
    gap: 5%;
}

.registerMain > .registerMainContent > p {
    font-family: "Oswald";
    font-size: 150%;
    font-weight: 500;
    letter-spacing: 1px;
    color: rgba(255, 193, 26, 1);
}

.registerMain > .registerMainContent > div {
    gap: 10%;
    width: 75%;
    height: 100%;
}

.registerMain > .registerMainContent > div > p {
    font-family: "Carlito";
    font-size: 105%;
    font-weight: 700;
    color: rgba(0, 0, 0, 1);
}

.registerMain > .registerMainContent > div > p > .required {
    color: red;
}

.registerMain > .registerMainContent > div > div {
    height: 100%;
    width: 100%;
    margin-top: 1%;
    gap: 5%;
}

.registerMain > .registerMainContent > div > div > p {
    font-family: "Carlito";
    font-size: 105%;
    font-weight: 700;
    color: rgba(0, 0, 0, 1);

}

.registerMain > .registerMainContent > div > div > p > span {
    color: red;
}

.registerMain > .registerMainContent > div > div > input {
    font-family: "Carlito";
    font-size: 105%;
    font-weight: 300;
    color: rgba(0,0,0,1);
    background-color: rgba(255, 255, 255, 1);
    border: 0.1vh solid rgba(185, 185, 185, 1);
    height: 200%;
    padding-left: 2%;

}

.registerMain > .registerMainContent > div > div > select {
    font-family: "Carlito";
    font-size: 105%;
    font-weight: 300;
    color: rgba(0,0,0,1);
    background-color: rgba(255, 255, 255, 1);
    border: 0.1vh solid rgba(185, 185, 185, 1);
    height: 200%;
    padding-left: 2%;
}

.registerMain > .registerMainContent > div > textarea {
    font-family: "Carlito";
    font-size: 105%;
    padding-left: 1.5%;
    padding-right: 1.5%;
    padding-top: 1%;
    margin-top: 1%;
    width: 100%;
    height: 15vh;
    resize: None;
    text-align: justify;
}

.registerMain > .registerMainContent > div:nth-of-type(6) {
    margin: 0;
    padding: 0;
    height: 100%;
}

.registerMain > .registerMainContent > div:nth-of-type(6) > div {
    margin: 0;
    padding: 0;
    height: 100%;
}

.registerMain > .registerMainContent > div:nth-of-type(6) > div > input[type=checkbox]:checked {
    accent-color: rgba(255, 193, 26, 1);
}


.registerMain > .registerMainContent > div:nth-of-type(6) > div > input {
    margin-top: -2%;
    width: 2%;
}

.registerMain > .registerMainContent > div:nth-of-type(6) > div > label {
    margin-left: -4%;
    padding-bottom: 1%;
    font-family: "Carlito";
    font-weight: 400;
    font-size: 105%;
    color: rgba(0, 0, 0, 1);

}

.registerMain > .registerMainContent > div:nth-of-type(6) > div > .agreecheckboxMobile {
    width: 5%;
}

.registerMain > .registerMainContent > div:nth-of-type(6) > div > .textCheckboxMobile {
    padding-left: 5%;
}

.registerMain > .registerMainContent > button {
    width: 10%;
    font-weight: 600;
    padding: 0.5% 0%;
    border-radius: 2vh;
    background-color: rgba(255, 193, 26, 1);
    color: rgba(0, 0, 0, 1);
    transition: 0.2s ease-in-out;
}

.registerMain > .registerMainContent > button:hover {
    color: rgba(255,255,255,1);
    transition: 0.2s ease-in-out;
}

.registerMain > .footerDiv {
    margin-top: 20%;
}


/* ###################### MOBILE STYLING ######################## */

.registerMain > .registerMainContent > .heading {
    font-family: "Oswald";
    font-size: 170%;
    font-weight: 500;
    letter-spacing: 1px;
    color: rgba(255, 193, 26, 1);
}

.registerMain > .registerMainContent > .mobileButton {
    width: 30%;
    font-weight: 600;
    padding: 0.5% 0%;
    border-radius: 2vh;
    background-color: rgba(255, 193, 26, 1);
    color: rgba(255,255,255,1);

}