body{
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}
.container{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.paper{
    width: 100%;
    max-width: 316px;
    padding: 32px 24px;
    border-radius: 16px;
    border: 1px solid rgba(243, 244, 246, 0.50);
    background:  #FFF;
    box-shadow: 0px 2px 4px -2px rgba(16, 24, 40, 0.10), 0px 4px 6px -1px rgba(16, 24, 40, 0.10);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.paper p{
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    color: #4B5563;
}

.btn{
    width: 153px;
    padding: 8px 20px;
    border-radius: 6px;
    border:none;
    cursor: pointer;
    margin-top: 16px;
}

.btn_dark{
    background-color: #077DBB;
    color: #FFF;
}

.btn_light{
    background-color: #CCECFD;
    color: #077DBB;
}

#support{
    color: #4B5563;
    cursor: pointer;
}

.header{
    margin-top: 1rem;
    font-size: 20px;
    font-style: normal;
    font-weight: 800;
    line-height: 28px; 
    letter-spacing: -0.4px;
    margin: 0;
}

#para_otp{
    color:  #6B7280;
}

.verification{
    display: flex;
    flex-direction: column;
    color: #111827;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
}

.verification input::placeholder{
    color:  #9CA3AF;
}

.verification input{
    padding: 10px 12px;
    border-radius: 6px;
    border: 1px solid var(--neutral-300, #D1D5DB);
    background:  #FFF;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}


.confirm_btn{
    width: 100%;
}