body {
    background-image: url('/img/auth/bg.jpg');
    background-color: rgba(0, 0, 0, 0.1);
    background-blend-mode: multiply;
    color: black;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
    flex-direction: row;
    height: auto;
    min-height: 100vh;
    padding: 50px 30px;
}

* {
    box-sizing: border-box;
    font-family: 'Poppins';
}


.fullpage-container {
    width: 100%;
    max-width: 500px;
    height: auto;
    padding: 50px;
    background-color: white;
    border-radius: 20px;
}

.fullpage-container input,
.fullpage-container select {
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid black;
    padding: 15px 20px;
    border-radius: 200px;
    margin-bottom: 20px;
    color: black;
    width: 100%;
}

.fullpage-container input::placeholder,
.fullpage-container select::placeholder {
    color: rgba(0, 0, 0, 0.5);
}

input[type="radio"] {
    width: auto;
}

.fullpage-container h1 {
    font-size: 30px;
    text-align: center;
    margin-bottom: 10px;
}

.fullpage-container h2 {
    font-weight: 300;
    margin-bottom: 20px;
    text-align: center;
}

#page-1-button,
#page-2-button,
#page-3-button,
#page-1-back,
#page-2-back,
#page-3-back {
    cursor: pointer;
    background-color: #25995C;
    border: none;
    color: white;
    margin-top: 20px;
}

#page-1-back,
#page-2-back,
#page-3-back {
    margin-top: 0px;
    background-color: grey;
}

.register-page {
    position: relative;
}

.bootstrap-datetimepicker-widget {
    display: block !important;
}

.warning {
    padding: 10px 20px;
    background-color: rgb(255, 179, 179);
    color: rgb(126, 2, 2);
    display: block;
    width: 100%;
    margin-bottom: 20px;
    border-radius: 10px;
}

#back-to-home {
    background-color: #25995C;
    padding: 10px 20px;
    border-radius: 100px;
    color: white;
}

#back-to-home:hover {
    color: white;
}