
/* Importing Font Family */
/* Poppins */
@font-face {
    font-family: "poppins";
    src: url("../fonts/poppins/Poppins-Bold.ttf") format("truetype");
    font-weight: 700;
}
@font-face {
    font-family: "poppins";
    src: url("../fonts/poppins/Poppins-Medium.ttf") format("truetype");
    font-weight: 400;
}
@font-face {
    font-family: "poppins";
    src: url("../fonts/poppins/Poppins-SemiBold.ttf") format("truetype");
    font-weight: 600;
}
/* INter */
@font-face
{
font-family: "inter";
src: url("../fonts/inter/Inter_Bold.ttf")format("truetype");
font-weight: 700;
}
@font-face
{
font-family: "inter";
src: url("../fonts/inter/Inter_ExtraBold.ttf")format("truetype");
font-weight: 800;
}
@font-face
{
font-family: "inter";
src: url("../fonts/inter/Inter_Medium.ttf")format("truetype");
font-weight: 400;
}
@font-face
{
font-family: "inter";
src: url("../fonts/inter/Inter_SemiBold.ttf")format("truetype");
font-weight: 600;
}
@font-face
{
font-family: "inter";
src: url("../fonts/inter/Inter_ExtraLight.ttf")format("truetype");
font-weight: 300;
}

*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'inter','poppins',sans-serif;
}
/* Color Root */
:root
{
    --Pcolor:#A41045;
    --Scolor:#18457C;
    --Bgcolor:#0A0C10;
    --Tcolor:#D8D8D8;
    --Bgshape:url(../images/bgshape.png);
}
/* Body */
body
{
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: var(--Bgcolor);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 50px;
}

.section
{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-image: var(--Bgshape);
    background-size: cover;
    background-position:center;
    flex-wrap: wrap;
}

.section .left
{
    width: 40%;
    margin-right: 50px;
}

.w-title
{
    color: #fff;
}
.p-title
{
    color: var(--Pcolor);
}
.s-title
{
    color: var(--Scolor);
}
.title-lg
{
    font-size: 50px;
}
.title-md
{
    font-size: 40px;
}
.title-sm
{
    font-size: 20px;
}
.text
{
    color: var(--Tcolor);
}

.thin
{
    font-weight: 300;
}

/* Buttons */
.btn
{
    padding: 10px 20px;
    border: none;
    outline: none;
}

.btn .btn-white
{
    background-color: rgba(255, 255, 255, 0.40);
    color: var(--Scolor);
}

.merror
{
    background-color: rgba(255,255,255,0.10);
    backdrop-filter: blur(4px);
    color: #fff;
    font-weight: bold;
}

.shape
{
    padding: 40px;
    border-radius: 20px;
    width: 482px;
    height: 524px;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
}
.shape .boxes
{
    margin-top: 30px;
}
.disc
{
    font-size: 12px;
}

.shape .box
{
    padding:10px 20px;
    background-color: #D9D9D9;
    border-radius: 60px;
    display: flex;
    align-items: center;
    margin: 10px 0px;
}

.shape .box .icon-box
{
    background-color: #7D7E80;
    /* width: 20px;
    height: 20px; */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    font-size: 40px;
}

.shape .box .content
{
    padding: 2px 10px;
}

.shape .box .content h2
{
    font-size: 20px;
}
.shape .box .content p
{
    font-size: 13px;
    color: var(--Bgcolor);
}


.shape-footer
{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

.left .btn
{
    margin-top: 20px;
}
.btn
{
    padding: 10px 20px;
    border: none;
    outline: none;
    border-radius: 30px;
    cursor: pointer;
}
.circles
{
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.circles .circle.active
{
    background-color: var(--Scolor);
    cursor: no-drop;
}
.circles .circle
{
    width: 15px;
    height: 15px;
    margin: 0px 5px;
    border-radius: 50%;
    cursor: pointer;
}

/* Responossive of Sections */
@media screen and (max-width:987px)
{
    body
    {
        padding: 0px 20px;
    }
.section
{
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
}    

.section .left
{
    display: none;
}

}
/* Responossive of Sections */
@media screen and (max-width:522px)
{
    body
    {
        padding: 10px !important;
    }
    .shape
    {
        max-width: 50vh !important;
        padding: 20px 15px !important;
    }
    .shape h4
    {
        font-size: 16px !important;
        /* margin-left: -10px; */
    }
    .shape h2
    {
        font-size: 12px !important;
    }
    .shape p
    {
        font-size: 10px !important;
    }
}


/* Section 2 */
#RegisterForm
{
    width: 100%;
    display: flex;
    flex-direction: column;
}

#RegisterForm input[type="text"],#RegisterForm input[type="email"],#RegisterForm input[type="password"]
{
    margin: 10px 0px;
    padding: 15px 20px;
    font-size: 20px;
}
#RegisterForm input[type="text"]::placeholder,#RegisterForm input[type="email"]::placeholder,#RegisterForm input[type="password"]::placeholder
{
    color: #fff;
    font-size: 20px;
}

.options
{
    /* margin-top: 10px; */
    display: flex;
    justify-content: start;
    width: 100%;
}
.options-label
{
    margin: 10px;
}
.options .option 
{
    font-size: 10px;
    margin: 5px;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-back
{
    position: absolute;
    top:20px;
    left: 20px;
}


.p-10-20
{
    padding: 10px 20px;
}

.mx-10
{
    margin: 0px 10px;
}
.my-10
{
    margin: 10px 0px;
}
.mt-10
{
    margin-top: 10px;
}
.mb-10
{
    margin-bottom: 10px;
}
.d-flex
{
    display: flex;
}

.between
{
    display: flex;
    justify-content: space-between;
}

.items-center
{
    display: flex;
    align-items: center;
}

.w-fit
{
    width: 100%;
}

.p-15-20
{
    padding: 15px 20px;
}
.p-20
{
    padding: 20px;
}
.p-30
{
    padding: 30px;
}
.text-center
{
    text-align: center;
}
.bg-white
{
    background-color: #fff;
}
.circle
{
    border-radius: 50%;
}

.j-center
{
    justify-content: center !important;
}

.round-10
{
    border-radius: 10px;
}
.round-20
{
    border-radius: 20px;
}

#password-input
{
    position: relative;
}

#password-input i
{
    position: absolute;
    top: 37%;
    right: 20px;
    font-size: 20px;
    z-index: 2;
    cursor: pointer;
}