html,
body {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
}

* {
    /* font-family: "Reddit Sans Condensed", sans-serif; */
    /* font-family: "Barlow", sans-serif; */
    font-family: "Poppins", sans-serif;
    transition: all .3s ease;
}

:root {
    --main-color: #111815;
    --main-background-color: rgb(255, 255, 255);
    --second-background-color: #D4E4FF;
}

body {
    /* background: url(../images/background.jpg);
    background-size: cover;
    background-position: center; */
}

.bold {
    font-weight: 600;
}

.hidden {
    display: none;
}

.clr-white {
    color: white;
}

.relative {
    position: relative;
}

.no-margin {
    margin: 0;
}

.no-padding {
    padding: 0;
}

.container {
    max-width: 1240px;
    padding-left: 40px;
    padding-right: 40px;
    width: 100%;
}

.flex {
    display: flex;
}

.align-center {
    align-items: center;
}

.justify-content-center {
    justify-content: center;
}

.space-between {
    justify-content: space-between;
}

.main {
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    background: #111815;
    background: radial-gradient(circle, rgba(255, 171, 69, 0.9) 0%, rgba(245,158,51, 1) 100%);
}

a {
    text-decoration: none;
}

.no-padding {
    padding: 0 !important;
}

.mw-100 {
    max-width: 100%;
}

.w-100 {
    width: 100%;
}

.h-100 {
    height: 100%;
}

/* PADDINGS */

.p-100-tb {
    padding-top: 100px;
    padding-bottom: 100px;
}


/* MARGINS */

.mt-10 {
    margin-top: 10px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-100 {
    margin-top: 100px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-100 {
    margin-bottom: 100px;
}

.mr-10 {
    margin-right: 10px;
}

.mr-20 {
    margin-right: 20px;
}

.mr-30 {
    margin-right: 30px;
}

.ml-10 {
    margin-left: 10px;
}

.ml-20 {
    margin-left: 20px;
}

.ml-30 {
    margin-left: 30px;
}

.pointer {
    cursor: pointer;
}

.text-align-left {
    text-align: left;
}

/* MAIN */

.main {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: top;
    padding: 30px 0px;
    overflow: auto;
}

.signUpContainer {
    width: 90%;
    max-width: 600px;
    padding: 50px 20px;
    background: white;
    text-align: center;
}

.logo {
    width: 100%;
    max-width: 200px;
}

.signUpContainer .header {
    font-weight: 700;
    font-size: 25px;
}

.signUpContainer .subheader {
    font-weight: 400;
    font-size: 12px;
    font-style: italic;
}

.signUpContainer .text {
    font-size: 14px;
}

.inputHeader {
    font-size: 13px;
    text-transform: uppercase;
    text-align: left;
    padding-left: 10px;
}

input {
    width: 100%;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 5px;
    font-size: 15px;
    margin-bottom: 15px;
}

input::placeholder {
    font-size: 12px;
    text-transform: uppercase;
}

input:focus{
    outline: none;
}

.periodeLabel {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 5px 0px;
}

.periodeLabel input {
    width: 15px;
    height: 15px;
    margin-bottom: 2px;
}

.error {
    font-size: 12px;
    color: red;
    font-weight: 600;
    margin-top: 10px;
}

button {
    margin-top: 30px;
    border-radius: 50px;
    background: radial-gradient(circle, rgba(233, 151, 52, 0.9) 0%, rgba(245,158,51, 1) 100%);
    color: white;
    font-size: 15px;
    font-weight: 700;
    padding: 10px 20px;
    border: none;
    min-width: 200px;
}

/* Extra extra large (xxl) */
@media (max-width: 1400px) {
    /* styles */
}

/* Extra large (xl) */
@media (max-width: 1200px) {
}

/* Large (lg) */
@media (max-width: 992px) {}

/* Medium (md) */
@media (max-width: 768px) {
    /* styles */
}

/* Small (sm) */
@media (max-width: 576px) {
    /* styles */
}