.sign-area {
    z-index: 1;
    background: white;
    position: relative;
    color: black;
    width: 100%;
    height: auto; 
    -webkit-border-top-right-radius: 12px;
    -webkit-border-bottom-right-radius: 12px;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    padding: 1.5em 2em;
    margin-top: 0;
    border-radius: 12px;
    z-index: 99;
    box-shadow: 0px 10px 34px -15px rgba(0, 0, 0, 0.24);
}
.sign-area .sign-hader {
    text-align: center;
    padding-top: 5px;
    padding-bottom: 8px;
}
.auth-main {
    padding: 0;
    /* background: #003865db; */
    background: repeating-linear-gradient(135deg, rgb(15, 29, 64), rgb(15, 29, 64) calc(25%), rgb(20, 34, 75) calc(25%), rgb(20, 34, 75) calc(50%));
    backdrop-filter: blur(8px);
}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: inherit;
    font-weight: 500;
    line-height: 1.1;
    color: #121212;
}
span.error {
    color: #C10000;
    font-size: 0.9em;
    font-weight: normal;
    margin-top: -30px;
    margin-bottom: 0;
    padding: 0;
    position: absolute;
    z-index: 9999;
    right: 45px;
}
.input-group-icon input.form-control:first-child, .input-group-icon input.form-control:last-child {
    -webkit-border-radius: 500px;
    border-radius: 13px;
}
.input-group-icon .input-group-addon + input.form-control {
    padding-right: 12px;
    padding-left: 38px;
    background: white;
    color: #001f20;
    font-size: 17px;
        /* filter: blur(1px); */
}

.sign-footer p {
    color: #b7b7b7;
    text-align: center;
    margin-top: 30px !important;
}




.btn-round:hover, .btn-round:focus, .btn-round:active {
    background-color: #00adee;
    color: #fff;
    border-color: #00adee;
    outline: none !important;
}

.btn-round {
    background-color: #034881;
    border-color: #034881;
    margin-top: 25px;
    height: 42px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 10px;
    -moz-box-shadow: 2px 3px 6px #2c2c2c;
    -webkit-box-shadow: 2px 3px 6px #2c2c2c;
    box-shadow: none;
    color: #ffffff;
    font-size: 20px;
}
label {
  
    font-weight: 300;
}


a {
    color: #034881;
}


.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
    margin-left: 10px;
}
input:checked + .slider {
    background-color: #00adee;
}
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 20px;
}
input:checked + .slider:before {
    transform: translateX(20px);
}
.slider:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}