@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;700&display=swap');


h1, h2, h3, h4, h5, h6{
    font-family: 'Raleway', sans-serif;
    letter-spacing: -0.5px;
}
p, span{
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 300;
    font-size: 19px;
    line-height: 25px;
    letter-spacing: 0px;
    margin-bottom: 0px !important;
}
button{
    font-family: 'Raleway', sans-serif;
}
a{
    font-family: 'Raleway', sans-serif;
    color: #7E014B !important;
    text-decoration: none !important;
}
.bg_bubbles{
     background-image: url(../Bubbles.png);
     width: 100%;
     height: 100vh;
     background-size: contain;
     background-repeat: no-repeat;
}
.main{
    width: 100%;
    display: flex;
    gap: 50px;
    flex-direction: column;
    position: absolute;
    bottom: 0px;
    padding-bottom: 20px;
}

/*START PAGE*/

.aap_logo{
    display: grid;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.first_heading{
    display: grid;
    align-items: center;
    justify-content: center;
}
.first_heading h4{
    width: 169.177734375px;
    height: 59px;
    font-weight: 700;
    font-size: 15px;
    line-height: 19px;
    letter-spacing: -0.15px;
    text-align: center;
}
.get_started_btn{
    text-align: center;
}
.get_started_btn button{
    width: 335px;
    height: 61px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 15px;
    line-height: 19px;
    letter-spacing: -0.15px;
    text-align: center;
    background: #7E014B;
    color: #fff;
}
.account_btn{
    text-align: center;
}
.account_btn i{
    background: #7E014B;
    border-radius: 50%;
    padding: 8px;
    color: #fff;
}

/*CREATE ACCOUNT PAGE*/

.create_acc_title{
    width: 335px;
    margin: 0 auto;
}
.create_acc_title h2{
    width: 197px;
    /*height: 108px;*/
    font-weight: 700;
    font-size: 50px;
    line-height: 54px;
    letter-spacing: -0.5px;
    color: #202020;
}

.register_form{
    width: 335px;
    margin: 0 auto;
}
.register_form input{
    width: 335px;
    height: 48px;
    border-radius: 59.29px;
    padding: 12px 15px;
    background: #F8F8F8;
    border: 1px solid #eaeaea;
}

.register_form input::placeholder{
    color: #DCDCDC;
}

.forget_div{
    width: 335px;
    margin: 0 auto;
    display:flex;
    align-items: center;
    justify-content: space-between;
}
.forget_div span{
    font-size: 16px;
}
.forget_div input[type="checkbox"] {
    width: 16px;
    height: 16px;
}

.verification_check .option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 220px;
    padding: 12px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    color: white;
    margin: 0 auto;
    transition: all 0.3s ease;
    position: relative;
}

.verification_check .option input {
    display: none;
}

.verification_check .option .circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 3px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.verification_check .option .circle::after {
    content: "✔";
    font-size: 14px;
    color: white !important;
    display: none;
}

/* Default styles */
.verification_check .sms {
    background-color: #880E4F;
}

.verification_check .email {
    background-color: #FDD835;
    color: black;
}

.verification_check .email .circle {
    border-color: #fff;
}

/* Checked styles */
.verification_check .option input:checked + .circle {
    /*background-color: white;*/
}

.verification_check .option input:checked + .circle::after {
    display: block;
    color: #880E4F;
}


.otp-container {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}
.otp-container input {
    width: 50px;
    height: 50px;
    font-size: 24px;
    text-align: center;
    border: 2px solid #D0D5DD;
    border-radius: 5px;
    margin: 0 5px;
}
.otp-container input:focus {
    border-color: #660033;
    outline: none;
}
.resend-text {
    font-size: 14px;
    color: #666;
}
.resend-text a {
    color: #99004d;
    font-weight: bold;
    text-decoration: none;
}
.resend-text a:hover {
    text-decoration: underline;
}


/* ONBOARDING CSS END */
















