@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:opsz,wght@6..12,300;6..12,500;6..12,700;6..12,900&display=swap');

html {
    height: 100%;
}

body {
    display: flex;
    background: rgba(244,245,247,255);
    background: linear-gradient(135deg, #fff 0%, #dbdbdb 100%);
    height: 100%;
    font-family: 'Nunito Sans', sans-serif;
    color: #60666c;
    font-size: 16px;
}

a {
    color: #1a242d;
    text-decoration: none;
    transition-duration: .2s;
}

a:hover,
a:focus {
    color: initial;
    text-decoration: underline;
}

ul, li {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.boxp {
    display: flex;
    margin: auto;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 3px 0px;
    opacity: 0;
    visibility: hidden;
    transition-duration: .5s;
}

.boxp.vsb {
    opacity: 1;
    visibility: visible;
}

.boxp > .cta {
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #fff 0%, #dbdbdb 100%);
    width: 450px;
    padding: 30px;
    border-left: 1px solid #efefef;
}

.boxp > .cta > .cta-content {
    margin: auto;
}

.cbox {
    background: #fff;
    width: 630px;
    padding: 30px;
}

.frow,
.form > div {
    display: flex;
    flex-direction: column;
}

.frow > label,
.form > div > label {
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 5px;
}

.form > div + div {
    margin-top: 1rem;
}

input:not(.form-check-input),
select,
textarea {
    background: #efefef;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    padding: 10px 10px;
    border: 0;
    border-bottom: 1px solid #efefef;
    border-radius: 0;
    outline: 0;
    transition-duration: .2s;
}

input:not(.form-check-input):focus,
select:focus,
textarea:focus {
    background: #d7d7d7;
    padding-left: 15px;
    padding-right: 15px;
    border-color: #1a242d;
}

.form-check.form-switch {
    margin-bottom: 0;
}

h2 {
    font-size: 22px;
    font-weight: 900;
    color: #000;
}

h3 {
    font-size: 16px;
    font-weight: 500;
}

.btn2,
.form > button {
    display: inline-flex;
    background: #4C4556;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 500;
    color: #fff;
    padding: 10px 15px;
    transition-duration: .2s;
}

.btn2:hover,
.form > button:hover,
.btn2:focus,
.form > button:focus {
    background: #1a242d;
    color: #fff;
    text-decoration: none;
}

.form > button {
    margin-top: 1rem;
}

.hr {
    border-top: 1px solid #efefef;
}

.logo {
    max-width: 200px;
    max-height: 150px;
}

/** */
.alert {
    border-radius: 0;
}

/** */
html > body.swal2-height-auto {
    height: 100%!important;
}
