/* General Body and Font Styles */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    background-color: #0a121c; 
    color: #e0e0e0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
}


.payment-step-container {
    background-color: #111a27; /* कंटेनर का गहरा बैकग्राउंड */
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    max-width: 550px;
    width: 100%;
    border: 2px solid;
    /* ग्रेडिएंट बॉर्डर */
    border-image-source: linear-gradient(to right, #4e54c8, #8f94fb);
    border-image-slice: 1;
}

/* Heading Style */
h2 {
    color: #ffffff;
    text-align: center;
    /* margin: 20px; */
    font-weight: 600;
    margin-top:5px;
}

/* Form Group Spacing */
.form-group {
    margin-bottom: 25px;
}

/* Label Styles */
.form-group label {
    display: block;
    color: #adb5bd; /* हल्का ग्रे टेक्स्ट */
    margin-bottom: 8px;
    font-size: 16px;
}

/* Input and Select Fields Styles */
#walletAddress_user, #walletAddress_user, #network {
    width: 100%;
    background-color: transparent;
    border: 1px solid #3d4a5a; /* बॉर्डर का रंग */
    color: #ffffff;
    padding: 15px;
    border-radius: 8px;
    font-size: 16px;
    box-sizing: border-box; /* सही पैडिंग के लिए */
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Placeholder Text Style */
#walletAddress_user::placeholder {
    color: #6c757d;
}

/* Focus effect for input/select */
#walletAddress_user:focus, #network:focus {
    outline: none;
    border-color: #8f94fb; /* फोकस पर बॉर्डर का रंग */
    box-shadow: 0 0 0 3px rgba(143, 148, 251, 0.2);
}

/* Select dropdown options style */
#network option {
    background-color: #111a27;
    color: #ffffff;
}

/* Common Button Style (cmn--btn) */
.cmn--btn {
    display: block;
    width: 100%;
    background-image: linear-gradient(90deg, #007bff, #8a2be2); /* नीला-बैंगनी ग्रेडिएंट */
    color: #ffffff;
    font-weight: bold;
    text-align: center;
    padding: 15px;
    border-radius: 8px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
    margin-top: 30px;
}

.cmn--btn:hover {
    filter: brightness(1.2); /* होवर पर थोड़ी चमक */
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(143, 148, 251, 0.3);
}

/* Flash Message Styles */
#flash-message {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    color: #ffffff;
    text-align: center;
    font-weight: 500;
}

.flash-success {
    background-color: #28a745; /* हरा रंग */
    border: 1px solid #218838;
}

.flash-error {
    background-color: #dc3545; /* लाल रंग */
    border: 1px solid #c82333;
}