html {
    width: 100%;
    height: 100%;
}

body {
    background: url('../../img/bg.jpg') center center no-repeat;
    background-size: cover;
    color: rgba(0, 0, 0, 0.6);
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    line-height: 1.6em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.overlay,
.form-panel.one:before {
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    background: rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 100%;
}

.form {
    z-index: 15;
    position: relative;
    background: #FFFFFF;
    width: 600px;
    border-radius: 4px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    margin: 100px auto 10px;
    overflow: hidden;
}

.form-toggle {
    z-index: 10;
    position: absolute;
    top: 67px;
    right: 60px;
    background: #FFFFFF;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    transform-origin: center;
    transform: translate(0, -25%) scale(0);
    opacity: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-toggle:before,
.form-toggle:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 15px;
    height: 2px;
    background: #5006e9;
    transform: translate(-50%, -50%);
}

.form-toggle:before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.form-toggle:after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.form-toggle.visible {
    transform: translate(0, -25%) scale(1);
    opacity: 1;
}

.form-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 0 20px;
}

.form-group:last-child {
    margin: 0;
}

.form-group label {
    display: block;
    margin: 0 0 10px;
    color: rgba(0, 0, 0, 0.6);
    /* font-size: 12px; */
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
    /* letter-spacing: 0.2em; */
}

.two .form-group label {
    color: #FFFFFF;
}

.form-group input {
    outline: none;
    display: block;
    background: rgba(0, 0, 0, 0.1);
    width: 100%;
    border: 0;
    border-radius: 4px;
    box-sizing: border-box;
    padding: 12px 20px;
    color: rgba(0, 0, 0, 0.6);
    font-family: inherit;
    font-size: inherit;
    font-weight: 500;
    line-height: inherit;
    transition: 0.3s ease;
}

.form-group input:focus {
    color: rgba(0, 0, 0, 0.8);
}

.two .form-group input {
    color: #FFFFFF;
}

.two .form-group input:focus {
    color: #FFFFFF;
}

.form-group button {
    outline: none;
    background: #5006e9;
    width: 100%;
    border: 0;
    border-radius: 4px;
    padding: 12px 20px;
    color: #FFFFFF;
    font-family: inherit;
    font-size: inherit;
    font-weight: 500;
    line-height: inherit;
    text-transform: uppercase;
    cursor: pointer;
}

.two .form-group button {
    background: #FFFFFF;
    color: #5006e9;
}

.form-group .form-remember {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
}

.form-group .form-remember input[type=checkbox] {
    display: inline-block;
    width: auto;
    margin: 0 10px 0 0;
}

.form-group .form-recovery {
    color: #5006e9;
    font-size: 12px;
    text-decoration: none;
}

.form-panel {
    padding: 60px calc(5% + 60px) 60px calc(5% + 60px);
    box-sizing: border-box;
}

.form-panel.one:before {
    content: "";
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
}

.form-panel.one.hidden:before {
    display: block;
    opacity: 1;
    visibility: visible;
}

.form-panel.two {
    z-index: 5;
    position: absolute;
    top: 0;
    left: 94%;
    background: #5006e9;
    width: 100%;
    min-height: 100%;
    padding: 60px calc(10% + 60px) 60px 60px;
    transition: 0.3s ease;
    cursor: pointer;
}

.form-panel.two:before {
    content: "\F658";
    display: block;
    position: absolute;
    top: 60px;
    left: 7px;
    transition: 0.3s ease;
    font-family: "bootstrap-icons" !important;
    font-size: 25px;
    color: #fff;
}

.form-panel.two:hover {
    left: 93%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.form-panel.two:hover:before {
    opacity: 0;
}

.form-panel.two.active {
    left: 10%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    cursor: default;
}

.form-panel.two.active:before {
    opacity: 0;
}

.form-header {
    margin: 0 0 40px;
}

.form-header h1 {
    padding: 4px 0;
    color: #5006e9;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
}

.form-header h1 i {
    margin: 0 10px;
}

.two .form-header h1 {
    position: relative;
    z-index: 40;
    color: #FFFFFF;
}

.pen-footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 600px;
    margin: 20px auto 100px;
}

.pen-footer a {
    color: #FFFFFF;
    font-size: 12px;
    text-decoration: none;
    text-shadow: 1px 2px 0 rgba(0, 0, 0, 0.1);
}

.pen-footer a .material-icons {
    width: 12px;
    margin: 0 5px;
    vertical-align: middle;
    font-size: 12px;
}

.cp-fab {
    background: #FFFFFF !important;
    color: #5006e9 !important;
}

.form-panel.three {
    z-index: 5;
    position: absolute;
    top: 0;
    right: 94%;
    background: #5006e9;
    width: 100%;
    min-height: 100%;
    padding: 60px 60px 60px calc(10% + 60px);
    transition: 0.3s ease;
    cursor: pointer;
}

.form-panel.three:before {
    content: "\F47A";
    display: block;
    position: absolute;
    top: 60px;
    right: 7px;
    transition: 0.3s ease;
    font-family: "bootstrap-icons" !important;
    font-size: 25px;
    color: #fff;
}

.form-panel.three:hover {
    right: 93%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.form-panel.three:hover:before {
    opacity: 0;
}

.form-panel.three.active {
    right: 10%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    cursor: default;
}

.form-panel.three.active:before {
    opacity: 0;
}

/*  */
.three .form-group label {
    color: #FFFFFF;
}

.three .form-group input {
    color: #FFFFFF;
}

.three .form-group input:focus {
    color: #FFFFFF;
}

.three .form-group button {
    background: #FFFFFF;
    color: #5006e9;
}

.three .form-header h1 {
    position: relative;
    z-index: 40;
    color: #FFFFFF;
}

@media (max-width: 991.98px) {
    .form {
        width: 80vw;
    }

    .form-panel {
        padding: 60px calc(5% + 30px) 60px calc(5% + 30px);
    }

    .form-panel.two.active {
        padding: 60px calc(10% + 30px) 60px 30px;
    }

    .form-panel.three.active {
        padding: 60px 30px 60px calc(10% + 30px);
    }

    .form-panel.three {
        right: 94%;
    }

    .form-panel.two {
        left: 94%;
    }
}

@media (max-width: 767.98px) {
    .form {
        width: 100vw;
    }

}

@media (max-width: 575.98px) {
    .form-panel.three {
        right: 91%;
    }

    .form-panel.two {
        left: 91%;
    }
}

table {
    width: 100%;
    margin-bottom: 20px;
    border-collapse: separate;
    border-spacing: 0;
    background-color: #fff;
}

td {
    padding: 1rem;
    border: 1px solid #dee2e6;
    border-style: none solid solid none;
}

tr:first-child td:first-child {
    border-top-left-radius: 5px;
}

tr:first-child td:last-child {
    border-top-right-radius: 5px;
}

tr:last-child td:first-child {
    border-bottom-left-radius: 5px;
}

tr:last-child td:last-child {
    border-bottom-right-radius: 5px;
}

tr:first-child td {
    border-top-style: solid;
}

tr td:first-child {
    border-left-style: solid;
}


.custom-checkmark {
    display: block;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin-bottom: 0 !important;
    padding-top: 5px;
}

.custom-checkmark input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 50%;
}

.custom-checkmark:hover input~.radio.checkmark {
    background-color: #ccc;
}

.custom-checkmark input:checked~.radio.checkmark {
    background-color: #5006e9;
}

.radio.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.custom-checkmark input:checked~.radio.checkmark:after {
    display: block;
}

.custom-checkmark .radio.checkmark:after {
    top: 9px;
    left: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}

.checkbox.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
}

.custom-checkmark:hover input~.checkbox.checkmark {
    background-color: #ccc;
}

.custom-checkmark input:checked~.checkbox.checkmark {
    background-color: #5006e9;
}

.checkbox.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.custom-checkmark input:checked~.checkbox.checkmark:after {
    display: block;
}

.custom-checkmark .checkbox.checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.form-logo {
    margin-bottom: 60px;
    display: flex;
    justify-content: space-between;
}

.form-logo img {
    height: 120px;
}

#contact_us,
#like_us {
    display: block;
    position: fixed;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 15px;
    border-radius: 50%;
    font-size: 35px;
}

#contact_us {
    background-color: #00a884;
    color: white;
    bottom: 20px;
}

#like_us {
    background-color: #385898;
    color: white;
    bottom: 100px;
}

#contact_us:hover {
    background-color: #01775e;
}

#like_us:hover {
    background-color: #243a64;
}

#contact_us i,
#like_us i {
    padding: 0 3.5px;
}

.help-block {
    width: 100%;
    margin-top: .25rem;
    font-size: .875em;
    color: #dc3545;
}

.has-error input {
    border: 1px solid #dc3545;
    padding-right: calc(1.5em + .75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(.375em + .1875rem) center;
    background-size: calc(.75em + .375rem) calc(.75em + .375rem);
}