/* ********* Home Page ************ */
.navbar-brand {
    font-size: 2.8rem;
    font-weight: 500;
    color: var(--secondary);
}

.main-container {
    min-height: 91vh;
}

.mobile-frame {
    max-width: 400px;
    margin: 0 auto;
    background: #FDF0DF;
    overflow-y: auto;
    height: 90vh;
}

.card-header-bjp {
    background: var(--primary);
    color: #fff;
    padding: 15px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.campaign-poster {
    padding: 1.5rem;
    text-align: center;
    margin-top: 0.4rem;
    border-radius: 10px;
    position: relative;
}

.campaign-poster img {
    width: 100%;
    max-width: 370px;
    height: auto;
    border-radius: 8px;
}

.form-label {
    color: #666;
    font-size: 1rem;
    margin-bottom: 0.8rem;
}

.phone-input {
    border-radius: 8px;
    padding: 0.8rem;
    font-size: 1.1rem;
}

.phone-input:focus {
    border-color: white;
}

.verification-btn {
    background: #6c757d;
    border: none;
    border-radius: 25px;
    padding: 1rem 2rem;
    color: white;
    font-weight: 500;
    width: 95%;
    margin-bottom: 5rem;
    font-size: 1rem;
}

.verification-btn:hover {
    background: #5a6268;
}

.disclaimer {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.5;
}

/* footer */

.footer-section {
    background: #e9ecef;
    /* padding: 2rem 0; */
}

.footer-column {
    border-right: 1px dotted black !important;
    padding-right: 1rem;
}

.footer-column:last-child {
    border-right: none;
}

.footer-column h6 {
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 1.1rem;
    font-size: 1rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: black;
    text-decoration: none;
    font-size: 0.85rem;
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: #6c757d;
    color: white;
    border-radius: 50%;
    line-height: 40px;
    margin: 0 0.4rem;
    text-decoration: none;
    font-size: 1.1rem;
}

.social-icons a:hover {
    background: var(--primary);
    color: white;
}

.dropdown-toggle::after {
    margin-left: 0.5rem;
}

@media (max-width: 768px) {

    nav.navbar,
    footer.footer-section {
        display: none !important;
    }
}

.mobile-frame::-webkit-scrollbar {
    width: 10px;
}

.mobile-frame::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 5px;
}

.mobile-frame::-webkit-scrollbar-thumb {
    background: grey;
    border-radius: 5px;
}

.nav-item {
    border-right: 1px solid black;
}

.detail-section {
    margin: 4rem 0;
}

/*  OTP Container */

.lotus-img-circle {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 10px;
    padding: 15px 0;
    margin: 28px auto 19px auto;
}

.lotus-img-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.otp-container .otp-input {
    width: 44px;
    height: 48px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    border: 2px solid #dee2e6;
    border-radius: 0.75rem;
    background: #fff !important;
    color: #212529;
    outline: none;
    transition: box-shadow 0.1s;
}

.otp-container .otp-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.16);
}

/* Form Wrapper */
.form-wrapper .upload-section {
    text-align: center;
    margin-bottom: 30px;
}

.form-wrapper .avatar-placeholder {
    width: 80px;
    height: 80px;
    background-color: #6c757d;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 10px;
    position: relative;
    cursor: pointer;
}

.form-wrapper .edit-icon {
    position: absolute;
    bottom: 0;
    right: -5px;
    background: #fd7e14;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.form-wrapper .gender-section {
    background-color: rgb(248, 248, 232);
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0;
}

.form-wrapper .btn-gender {
    border: 1px solid #dee2e6;
    background: white;
    color: #6c757d;
    border-radius: 20px;
    padding: 8px 20px;
    margin: 0 5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* .form-wrapper .btn-gender.active {
    background-color: #fd7e14;
    color: white;
    border-color: #fd7e14;
} */
.gender-radio:checked+.btn-gender {
    background-color: #fd7e14;
    color: white;
    border-color: #fd7e14;
}

.form-wrapper .form-label {
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 8px;
}

.form-wrapper .required {
    color: #dc3545;
}

.form-wrapper .form-control,
.form-wrapper .form-select {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 16px;
}

.form-wrapper .form-control:focus,
.form-wrapper .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(253, 126, 20, 0.25);
}

.form-wrapper .input-group-text {
    background: white;
    border: 1px solid #dee2e6;
    border-right: none;
}

.form-wrapper .input-group .form-control {
    border-left: none;
}

.form-wrapper .section-title {
    font-weight: 600;
    color: #495057;
    margin: 30px 0 20px 0;
    font-size: 16px;
}

/*  Detail Page */
.detail-container .bjp-orange-btn {
    background: var(--primary);
    font-weight: 500;
    border-radius: 10px;
}

.detail-container .bjp-orange-btn:hover {
    background: linear-gradient(135deg, var(--primary), #D4491F);
    color: white;
}

.detail-container .cardContainer .imgIdcard {
    border-radius: 20px;
}

.detail-container .cardContainer .bjp-overlap-photo {
    width: 14%;
    height: 20%;
    border-radius: 7px;
    object-fit: cover;
    /* border: 2px solid #DA4E2D; */
    position: absolute;
    right: 12.3%;
    bottom: 44%;
}

.detail-container .cardContainer .bjp-qr {
    width: 13.3%;
    height: 18%;
    position: absolute;
    right: 12.7%;
    bottom: 25.3%;

    border: 1px solid white;
}

.detail-container .cardContainer .user-content {
    top: 90px;
    left: 16px;
    width: 230px;
    padding: 0 0 10px 0;
    height: 110px;
    line-height: 0;
    font-size: 10px;
    font-weight: 800;
    text-transform: capitalize;
}
.user-content p span{
    text-transform: uppercase;
    color:#3a3a70;
    margin-right:4px;
}

.pos {
    position: absolute;
}

@media (max-width: 399px) {
    .detail-container .cardContainer .user-content {
        top: 40%;
        left: 5%;
        font-size: 9px;
        padding: 0 0 5px 0;
    }
    .user-content p{
        margin-bottom: 15px;
    }
}

@media (max-width: 360px) {
    .detail-container .cardContainer .user-content {
        top: 40%;
        left: 5%;
        font-size: 8px;
        padding: 0 0 5px 0;
    }
    .user-content p{
        margin-bottom: 13px;
    }
}