@import url("font.css");

:root {
    --bg-blue: rgba(40, 102, 175, 1);
    --orange-hover: rgb(216, 113, 16);
    --orange: rgba(240, 127, 19, 1);
    --radius: 20px;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Shabnam", sans-serif;
}
p,
h1,
h2,
input,
select,
textarea,
h3,
h4,
h5,
h6 {
    font-family: "Shabnam", sans-serif;
    margin: 0;
}
body {
    font-family: "Shabnam", sans-serif;
    color: #212529;
    background-color: #ffffff;
}

.header-register {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 3px solid #2866af;
    border-radius: var(--radius);
    margin-bottom: 0.5rem;
    padding-inline: 1rem;
}
.header-register img {
    width: 100%;
    max-width: 100%;
}
.header-register .iconContact {
    display: flex;
    gap: 1rem;
}

.link {
    display: inline-block;
    text-decoration: none;
}

.link:hover {
    text-decoration: none;
    color: #000;
}
.container-content {
    background-color: var(--bg-blue);
    border-radius: var(--radius);
    background-image: url(/assets/Vector99.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    height: 89vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 5rem;
}
.container-content .box-content {
    width: 100%;
    height: 100%;
    border-radius: var(--radius);

}
.box-content .title-box {
    display: flex;
    justify-content: space-between;
    background-color: #ffffff;
    padding: 0.5rem 2rem;
    align-items: center;
    border-radius: var(--radius) var(--radius) 0px 0px;
}
.box-content .title-box-login {
    display: flex;
    background-color: #ffffff;
    padding: 0.5rem 2rem;
    align-items: center;
    border-radius: var(--radius) var(--radius) 0px 0px;
}
.box-content .title-box img {
    width: 70px;
}
.box-content .title-box p,
.box-content .title-box-login p {
    color: var(--orange);
    margin: 0;
    font-size: 1.5rem;
    font-weight: bold;
    flex: 1;
}
.form-box {
    display: flex;
}
.form-box .form {
    flex: 1;
    background-color: #ffffff;
    border-bottom-right-radius: var(--radius);
    padding: 1rem;
}
.form-box .form1 {
    flex: 1;
    background-color: #ffffff;
    border-bottom-left-radius: var(--radius);
    padding: 1rem;
}
.form .radius-drop,
.form1 .radius-drop {
    background-color: var(--bg-blue);
    border-radius: var(--radius);
    height: 100%;
    width: 100%;
    padding: 1rem;
}
.form .radius-drop .bg-blur,
.form1 .radius-drop .bg-blur {
    background: rgba(183, 233, 246, 0.25);
    backdrop-filter: blur(13px);
    border-radius: var(--radius);
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.user-form {
    padding: 1rem;
}
.sub-btn {
    width: 100%;
}
.sub-btn button {
    width: 100%;
    background-color: var(--orange);
    padding: 10px;
    color: #fff;
    border: none;
    outline: none;
    border-radius: 0 0 var(--radius) var(--radius);
    transition: all 0.4s ease;
}
.sub-btn-approved button {
    width: 100%;
    background-color: var(--orange);
    padding: 10px;
    color: #fff;
    border: none;
    outline: none;
    border-radius: var(--radius);
    transition: all 0.4s ease;
}
.sub-btn button:hover {
    background-color: var(--orange-hover);
}
.otp-fild {
    height: 50px !important;
}
.form-box .guid {
    padding: 1rem;
    background-color: #ffffff;
    border-bottom-left-radius: var(--radius);
}
.guid .guid-title {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}
.guid p {
    margin-top: 0.5rem;
}
.customs-input {
    background-color: var(--orange) !important;
    border-radius: none !important;
    border-radius: 0px 5px 5px 0 !important;
    width: 180px !important;
    justify-content: center !important;
}

/* .guid .guid-title p {
    font-size: 1.5rem;
} */

.form-box .form,
.form-box .guid {
    flex: 1;
}
@media screen and (max-width: 768px) {
    .header-register {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        border-bottom: 3px solid #2866af;
        border-radius: var(--radius);
        gap: 10px;
        margin-bottom: 1rem;
    }
    .header-register img {
        width: 50px !important;
    }
    .header-register h3 {
        font-size: 1rem;
    }
    .iconContact {
        display: none !important;
    }
}

/*====================*/
/* BUZZ OUT
/*====================*/

@-webkit-keyframes buzz-out-on-hover {
    10% {
        -webkit-transform: translateX(3px) rotate(2deg);
        transform: translateX(3px) rotate(2deg);
    }
    20% {
        -webkit-transform: translateX(-3px) rotate(-2deg);
        transform: translateX(-3px) rotate(-2deg);
    }
    30% {
        -webkit-transform: translateX(3px) rotate(2deg);
        transform: translateX(3px) rotate(2deg);
    }
    40% {
        -webkit-transform: translateX(-3px) rotate(-2deg);
        transform: translateX(-3px) rotate(-2deg);
    }
    50% {
        -webkit-transform: translateX(2px) rotate(1deg);
        transform: translateX(2px) rotate(1deg);
    }
    60% {
        -webkit-transform: translateX(-2px) rotate(-1deg);
        transform: translateX(-2px) rotate(-1deg);
    }
    70% {
        -webkit-transform: translateX(2px) rotate(1deg);
        transform: translateX(2px) rotate(1deg);
    }
    80% {
        -webkit-transform: translateX(-2px) rotate(-1deg);
        transform: translateX(-2px) rotate(-1deg);
    }
    90% {
        -webkit-transform: translateX(1px) rotate(0);
        transform: translateX(1px) rotate(0);
    }
    100% {
        -webkit-transform: translateX(-1px) rotate(0);
        transform: translateX(-1px) rotate(0);
    }
}
@keyframes buzz-out-on-hover {
    10% {
        -webkit-transform: translateX(3px) rotate(2deg);
        transform: translateX(3px) rotate(2deg);
    }
    20% {
        -webkit-transform: translateX(-3px) rotate(-2deg);
        transform: translateX(-3px) rotate(-2deg);
    }
    30% {
        -webkit-transform: translateX(3px) rotate(2deg);
        transform: translateX(3px) rotate(2deg);
    }
    40% {
        -webkit-transform: translateX(-3px) rotate(-2deg);
        transform: translateX(-3px) rotate(-2deg);
    }
    50% {
        -webkit-transform: translateX(2px) rotate(1deg);
        transform: translateX(2px) rotate(1deg);
    }
    60% {
        -webkit-transform: translateX(-2px) rotate(-1deg);
        transform: translateX(-2px) rotate(-1deg);
    }
    70% {
        -webkit-transform: translateX(2px) rotate(1deg);
        transform: translateX(2px) rotate(1deg);
    }
    80% {
        -webkit-transform: translateX(-2px) rotate(-1deg);
        transform: translateX(-2px) rotate(-1deg);
    }
    90% {
        -webkit-transform: translateX(1px) rotate(0);
        transform: translateX(1px) rotate(0);
    }
    100% {
        -webkit-transform: translateX(-1px) rotate(0);
        transform: translateX(-1px) rotate(0);
    }
}
.buzz-out-on-hover {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.buzz-out-on-hover:hover,
.buzz-out-on-hover:focus,
.buzz-out-on-hover:active {
    -webkit-animation-name: buzz-out-on-hover;
    animation-name: buzz-out-on-hover;
    -webkit-animation-duration: 0.75s;
    animation-duration: 0.75s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}
