:root {
    --primary-color: #28a745;
    --secondary-color: #dc3545;
    --accent-color: #f8f9fa;
}

body {
    background: linear-gradient(135deg, #1a472a, #2d5a27);
    background-image: url("https://4kwallpapers.com/images/wallpapers/bmw-m2-3840x2160-4095.jpg");
    background-size:100% 100%;
    width:auto;
    height: auto;
    min-height: 100vh;
    padding: 2rem 0;
}

.main-container {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.header-wrapper{
	width: 70%;
	margin: auto;
}

.header-wrapper .logo {
  width: 250px;
}
.steps-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.step-button {
    flex: 1;
    background: white;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 1rem;
    border-radius: 15px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80px;
}

.step-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.2);
    background: var(--primary-color);
    color: white;
    text-decoration: none;
}

.step-button .arrow {
    font-size: 1.5rem;
    margin-left: 1rem;
}

.form-label {
    color: #1a472a;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-control, .form-select {
    padding: 0.8rem 1rem;
    border-radius: 10px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(40, 167, 69, 0.25);
}

.input-with-button {
    display: flex;
    gap: 10px;
}

.input-with-button input {
    flex: 1;
}

.check-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    min-width: 120px;
    height: 100%;
}

.check-button:hover {
    background-color: #218838;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.check-button:active {
    transform: translateY(1px);
}

.check-button:disabled {
    background-color: #6c757d;
    transform: none;
    cursor: not-allowed;
}

.submit-button {
    background: var(--primary-color);
    color: white;
    padding: 1rem 3rem;
    border-radius: 10px;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.submit-button:hover {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.note {
    color: #666;
    font-size: 0.9rem;
}

.input-group-text {
    background: var(--accent-color);
    border: 2px solid #e9ecef;
    border-right: none;
    cursor: pointer;
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.shake-animation {
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

/* Toast Notification Styles */
.toast-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1000;
}

.toast-success { border-left: 4px solid #28a745; }
.toast-error { border-left: 4px solid #dc3545; }
.toast-info { border-left: 4px solid #17a2b8; }

/* Loading Overlay Styles */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.loading-spinner {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.loading-spinner i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Form Validation Styles */
.form-control.is-invalid {
    border-color: var(--secondary-color);
    background-image: none;
}

.invalid-feedback {
    color: var(--secondary-color);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.bank-select {
    position: relative;
    cursor: pointer;
}

.bank-option {
    display: flex;
    align-items: center;
    /* padding: 10px; */
}

.bank-option img {
    /* width: 30px; */
    height: 20px;
    margin-right: 10px;
}

.bank-search {
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.bank-search input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.selected-bank {
    display: flex;
    align-items: center;
}

.selected-bank img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

/* Modal Success Styles */
.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1050;
    backdrop-filter: blur(5px);
}

.success-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transform: translateY(0);
    animation: modalBounce 0.5s ease-out;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.success-icon {
    width: 90px;
    height: 90px;
    background: #28a745;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    animation: iconPop 0.5s ease-out;
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.3);
}

.success-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #28a745;
    opacity: 0.3;
    animation: ripple 1.5s infinite;
}

.success-icon i {
    font-size: 45px;
    color: white;
    animation: iconScale 0.5s ease-out;
}

.success-content h3 {
    color: #2c3e50;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.success-content p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 0;
    padding: 0 20px;
}
#password {
    border-radius: 10px !important;
}
#password + .input-group-text {
    position: absolute;
    right: 2px;
    top: 2px;
    bottom: 2px;
    z-index: 222;
    border: none;
}

/* Animations */
@keyframes modalBounce {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes iconPop {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes iconScale {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Responsive adjustments */
@media (max-width: 576px) {
    body {
        padding: 1rem 10px;
    }
    .header-wrapper .logo {
        width: 200px;
    }
    .main-container {
        padding: 2rem 1rem;
        border-radius: 1rem;
    }
    .submit-button {
        display: block;
        width: 100%;
        margin-top: 40px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    }
    .input-with-button {
        flex-flow: row wrap;
    }
    .input-with-button input,
    .input-with-button [type="button"] {
        width: 100%;
    }
    .success-content {
        padding: 30px 20px;
    }

    .success-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .success-icon i {
        font-size: 35px;
    }

    .success-content h3 {
        font-size: 24px;
    }

    .success-content p {
        font-size: 14px;
        padding: 0 10px;
    }
}

/* Additional hover effect */
.success-content:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
    box-shadow: 0 25px 65px rgba(0, 0, 0, 0.25);
}