@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700;900&display=swap');
*,
body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
}

html,
body {
    height: 100%;
}

input.btn-check {
    display: none;
}

.pdt-1 {
    padding-top: 1vh !important;
}

.pdt-2 {
    padding-top: 2vh !important;
}

.pdt-3 {
    padding-top: 3vh !important;
}

.pdb-1 {
    padding-bottom: 1vh !important;
}

.pdb-2 {
    padding-bottom: 2vh !important;
}

.pdb-3 {
    padding-bottom: 3vh !important;
}

.mat-1 {
    margin-top: 1vh !important;
}

.mat-2 {
    margin-top: 2vh !important;
}

.mat-3 {
    margin-top: 3vh !important;
}

.mab-1 {
    margin-bottom: 1vh !important;
}

.mab-2 {
    margin-bottom: 2vh !important;
}

.mab-3 {
    margin-bottom: 3vh !important;
}

label.btn {
    background: white;
}

label.btn:active,
label.btn:hover {
    color: black;
    background: rgba(0, 0, 0, 0.1);
}

label.btn.active {
    background: rgb(58, 107, 243);
    color: white;
    font-weight: 500;
}

label.btn .form-holder {
    background: #f7f7f7;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
}

.social-icons i {
    size: 3vh;
}

.form-items {
    /* background: #00a9df; */
    background: rgb(205, 218, 219);
}

.form-holder .form-content {
    position: relative;
    text-align: center;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    padding: 60px;
}

.logo img {
    height: 3.2vw !important;
}

.fail-notif {
    background: rgb(163, 51, 51);
    font-weight: 900;
    color: black;
    padding-top: 3vh;
    padding-bottom: 3vh;
    padding-left: 2vw;
    display: none;
    text-align: center;
}

.fail-notif h4 {
    margin-top: 3vh;
}

.success-notif h4 {
    margin-top: 3vh;
}

.success-notif {
    background: #4caf50;
    font-weight: 900;
    color: black;
    padding-top: 3vh;
    padding-bottom: 3vh;
    padding-left: 2vw;
    text-align: center;
    display: none;
}

.valid-feedback.active,
.invalid-feedback.active {
    display: block;
}

.form-content .form-items {
    border: 3px solid #fff;
    padding: 40px;
    display: inline-block;
    width: 100%;
    min-width: 540px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    text-align: left;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.form-content h3 {
    color: black;
    text-align: left;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 5px;
}

.form-content h3.form-title {
    margin-bottom: 30px;
}

.form-content p {
    color: black;
    text-align: left;
    font-size: 17px;
    font-weight: 300;
    line-height: 20px;
    margin-bottom: 30px;
}

.form-check {
    margin-top: 2vh;
}

.form-content label,
.was-validated .form-check-input:invalid~.form-check-label,
.was-validated .form-check-input:valid~.form-check-label {
    color: black;
}

.form-content input[type=text],
.form-content input[type=password],
.form-content input[type=email],
.form-content select {
    width: 100%;
    padding: 9px 20px;
    text-align: left;
    border: 0;
    outline: 0;
    border-radius: 6px;
    background-color: #fff;
    font-size: 15px;
    font-weight: 300;
    color: #8D8D8D;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    margin-top: 16px;
}

.form-gender {
    margin-top: 25px;
    margin-bottom: 25px;
}

.btn-primary {
    background-color: #6C757D;
    outline: none;
    border: 0px;
    box-shadow: none;
    margin-top: 15px;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: #495056;
}

.form-content textarea {
    position: static !important;
    width: 100%;
    padding: 8px 20px;
    border-radius: 6px;
    text-align: left;
    background-color: #fff;
    border: 0;
    font-size: 15px;
    font-weight: 300;
    color: #8D8D8D;
    outline: none;
    resize: none;
    height: 120px;
    -webkit-transition: none;
    transition: none;
    margin-bottom: 14px;
}

.form-content textarea:hover,
.form-content textarea:focus {
    border: 0;
    background-color: #ebeff8;
    color: #8D8D8D;
}

.mv-up {
    margin-top: -9px !important;
    margin-bottom: 8px !important;
}

.invalid-feedback {
    color: #ff606e;
}

.valid-feedback {
    color: #2acc80;
}