.card-container {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.status-approved {
    background-color: #d1fae5;
    color: #065f46;
}

.status-pending {
    background-color: #fef3c7;
    color: #92400e;
}

.status-rejected {
    background-color: #fee2e2;
    color: #991b1b;
}

.status-hold {
    background-color: #e0e7ff;
    color: #3730a3;
}

.verified {
    background-color: #d1fae5 !important;
    color: #065f46 !important;
    border-color: #10b981 !important;
    cursor: default !important;
}

.verified:hover {
    background-color: #d1fae5 !important;
}

.aadhar-input {
    letter-spacing: 2px;
    font-family: monospace;
}

.bank-list {
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    background-color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.bank-item {
    padding: 0.75rem 1rem;
    cursor: pointer;
    border-bottom: 1px solid #f3f4f6;
}

.bank-item:last-child {
    border-bottom: none;
}

.bank-item:hover {
    background-color: #f3f4f6;
}

.otp-container {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.otp-input {
    width: 2.5rem;
    height: 3rem;
    text-align: center;
    font-size: 1rem;
    border: 2px solid #d1d5db;
    border-radius: 0.5rem;
    transition: all 0.2s;
}

.otp-input:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    outline: none;
}

.file-upload-container {
    position: relative;
    overflow: hidden;
}

.file-name {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.form-input {
    max-width: 100%;
}

@media (max-width: 1023px) {
    .otp-container {
        gap: 0.3rem;
    }
    
    .otp-input {
        width: 2.2rem;
        height: 2.7rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 767px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .btn-wide {
        width: 100%;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .container {
        max-width: 42rem;
    }
    
    .btn-wide {
        width: auto;
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 56rem;
    }
    
    .btn-wide {
        width: auto;
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.card-option {
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 0.75rem;
    cursor: pointer;
    transition: all 0.2s;
}

.card-option:hover {
    background-color: #f9fafb;
}

.card-option.selected {
    border-color: #3b82f6;
    background-color: #eff6ff;
}

.terms-checkbox {
    margin-top: 1rem;
}

.main-content {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.page-content-wrapper {
    flex: 1 0 auto;
}

.footer {
    flex-shrink: 0;
}