
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    max-width: 500px;
    width: 100%;
}

.card {
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.header {
    background: linear-gradient(to right, #2575fc, #6a11cb);
    color: white;
    padding: 25px;
    text-align: center;
}

.header h1 {
    font-size: 24px;
    margin-bottom: 5px;
}

.header p {
    opacity: 0.9;
}

.login-content {
    padding: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.input-with-icon {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #2575fc;
}

.form-input {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-input:focus {
    border-color: #2575fc;
    outline: none;
    box-shadow: 0 0 0 2px rgba(37, 117, 252, 0.2);
}

.amount-preview {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 15px;
    margin: 25px 0;
    text-align: center;
}

.amount-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.amount {
    font-size: 28px;
    font-weight: bold;
    color: #2575fc;
}

.proceed-btn {
    width: 100%;
    background: linear-gradient(to right, #2575fc, #6a11cb);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.proceed-btn:hover {
    box-shadow: 0 5px 15px rgba(37, 117, 252, 0.4);
    transform: translateY(-2px);
}

.footer {
    text-align: center;
    margin-top: 20px;
    font-size: 12px;
    color: #999;
}

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #4caf50;
    color: white;
    padding: 15px 25px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: translateX(150%);
    transition: transform 0.3s ease;
    z-index: 1000;
}

.notification.show {
    transform: translateX(0);
}

.notification.error {
    background-color: #f44336;
}

.steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    position: relative;
}

.steps::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #e0e0e0;
    z-index: 1;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.step-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    margin-bottom: 5px;
}

.step.active .step-circle {
    background: linear-gradient(to right, #2575fc, #6a11cb);
}

.step-label {
    font-size: 12px;
    color: #999;
}

.step.active .step-label {
    color: #2575fc;
    font-weight: 600;
}

@media (max-width: 480px) {
    .login-content {
        padding: 20px;
    }
    
    .header {
        padding: 20px;
    }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    max-width: 500px;
    width: 100%;
}

.card {
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.header {
    background: linear-gradient(to right, #2575fc, #6a11cb);
    color: white;
    padding: 25px;
    text-align: center;
}

.header h1 {
    font-size: 24px;
    margin-bottom: 5px;
}

.header p {
    opacity: 0.9;
}

.payment-content {
    padding: 30px;
}

.amount-section {
    text-align: center;
    margin-bottom: 30px;
}

.amount-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.amount {
    font-size: 32px;
    font-weight: bold;
    color: #2575fc;
}

.qr-section {
    text-align: center;
    margin-bottom: 30px;
}

.qr-container {
    display: inline-block;
    padding: 20px;
    border-radius: 10px;
    background-color: #f8f9fa;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.qr-code {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, #6a11cb, #2575fc);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 14px;
    margin: 0 auto;
}

.qr-instruction {
    margin-top: 15px;
    font-size: 14px;
    color: #666;
}

.upi-section {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 25px;
}

.section-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.upi-id-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    border-radius: 8px;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
}

.upi-id {
    font-family: monospace;
    font-size: 16px;
    font-weight: 600;
    color: #2575fc;
}

.copy-btn {
    background-color: #2575fc;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 8px 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background-color 0.3s;
}

.copy-btn:hover {
    background-color: #1a68e3;
}

.bank-info {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}

.bank-name {
    font-weight: 600;
    color: #333;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-input {
    width: 100%;
    padding: 12px 40px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-input:focus {
    border-color: #2575fc;
    outline: none;
    box-shadow: 0 0 0 2px rgba(37, 117, 252, 0.2);
}

.file-upload {
    position: relative;
    display: inline-block;
    width: 100%;
}

.file-upload-input {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-upload-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 15px;
    background-color: #f8f9fa;
    border: 2px dashed #ddd;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.file-upload-label:hover {
    border-color: #2575fc;
    background-color: #eef5ff;
}

.file-name {
    margin-top: 8px;
    font-size: 14px;
    color: #666;
    text-align: center;
}

.proceed-btn {
    width: 100%;
    background: linear-gradient(to right, #2575fc, #6a11cb);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.proceed-btn:hover {
    box-shadow: 0 5px 15px rgba(37, 117, 252, 0.4);
    transform: translateY(-2px);
}

.footer {
    text-align: center;
    margin-top: 20px;
    font-size: 12px;
    color: #999;
}

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #4caf50;
    color: white;
    padding: 15px 25px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: translateX(150%);
    transition: transform 0.3s ease;
    z-index: 1000;
}

.notification.show {
    transform: translateX(0);
}

@media (max-width: 480px) {
    .payment-content {
        padding: 20px;
    }
    
    .header {
        padding: 20px;
    }
    
    .qr-code {
        width: 180px;
        height: 180px;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    max-width: 500px;
    width: 100%;
}

.card {
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.header {
    background: linear-gradient(to right, #2575fc, #6a11cb);
    color: white;
    padding: 25px;
    text-align: center;
}

.header h1 {
    font-size: 24px;
    margin-bottom: 5px;
}

.header p {
    opacity: 0.9;
}

.confirmation-content {
    padding: 30px;
}

.success-animation {
    text-align: center;
    margin-bottom: 25px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(to right, #4caf50, #45a049);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    animation: pulse 2s infinite;
}

.success-icon i {
    font-size: 40px;
    color: white;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.confirmation-message {
    text-align: center;
    margin-bottom: 30px;
}

.confirmation-message h2 {
    color: #4caf50;
    margin-bottom: 10px;
}

.confirmation-message p {
    color: #666;
    line-height: 1.6;
}

.payment-details {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 25px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    color: #666;
    font-weight: 500;
}

.detail-value {
    font-weight: 600;
    color: #333;
}

.amount-highlight {
    font-size: 20px;
    color: #2575fc;
}

.actions {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.action-btn {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.print-btn {
    background-color: #f8f9fa;
    color: #333;
    border: 1px solid #ddd;
}

.print-btn:hover {
    background-color: #e9ecef;
}

.home-btn {
    background: linear-gradient(to right, #2575fc, #6a11cb);
    color: white;
}

.home-btn:hover {
    box-shadow: 0 5px 15px rgba(37, 117, 252, 0.4);
    transform: translateY(-2px);
}

.footer {
    text-align: center;
    margin-top: 20px;
    font-size: 12px;
    color: #999;
}

.steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    position: relative;
}

.steps::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #e0e0e0;
    z-index: 1;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.step-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    margin-bottom: 5px;
}

.step.completed .step-circle {
    background: linear-gradient(to right, #4caf50, #45a049);
}

.step.active .step-circle {
    background: linear-gradient(to right, #2575fc, #6a11cb);
}

.step-label {
    font-size: 12px;
    color: #999;
}

.step.completed .step-label,
.step.active .step-label {
    color: #2575fc;
    font-weight: 600;
}

.transaction-id {
    background: linear-gradient(to right, #2575fc, #6a11cb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    font-size: 18px;
}

@media (max-width: 480px) {
    .confirmation-content {
        padding: 20px;
    }
    
    .header {
        padding: 20px;
    }
    
    .actions {
        flex-direction: column;
    }
}