  /* Button Styling */
  .butn {
    background-color: white;
    color:  #F57A2B;
    font-weight: bold;
    border: 2px solid #F57A2B;
    padding: 12px 20px;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* Hover Effect on Button */
.butn:hover {
    background-color: #f00c0c;
    color: white;
    transform: scale(1.05);
    box-shadow: 0px 0px 12px rgba(255, 127, 0, 0.6);
}

/* Button Animation Effect */
.butn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: 0.4s;
}

.butn:hover::after {
    left: 100%;
}

/* Fade-in Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Apply Marathi font for Marathi text */
.marathi-text {
    font-family: 'Mukta', sans-serif;
}

/* Ensure input fields have correct font */
input, textarea, select {
    font-family: inherit;
}


/* General Styling */
body {
    background-color: #F57A2B;
    font-family: "Mukta", sans-serif !important;
}

/* Card Styling */
.login_page_card {
    background: white;
    border-radius: 15px;
    border: none;
    padding: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Title Styling */
.card-title h2 {
    font-size: 26px;
    font-weight: bold;
    color: #d35400;
}

/* Form Label */
.form-label {
    font-weight: 600;
    color: #d35400;
}

/* Input Fields */
.form-control {
    border-radius: 8px;
    border: 1px solid #d35400;
    padding: 10px;
    font-size: 16px;
    transition: 0.3s;
}

.form-control:focus {
    border-color: #e67e22;
    box-shadow: 0px 0px 6px rgba(230, 126, 34, 0.5);
}

/* Switch Label */
.text-secondary {
    color: #d35400 !important;
}

/* Toggle Switch */
.form-check-input {
    background-color: #d35400;
    border-color: #d35400;
}

.form-check-input:checked {
    background-color: #F57A2B;
    border-color: #e67e22;
}

/* Submit Button */
.btn-primary {
    background-color: #d35400;
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 8px;
    transition: 0.3s;
}

.btn-primary:hover {
    background-color: #e67e22;
}

/* Adjust Form Layout */
.mb-4 {
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    
    .col-lg-8 {
        width: 100%;
    }

    .btn-primary {
        width: 100%;
    }
}
.membership_login_buttons .btn-primary {
    background-color: #F57A2B; /* Orange Theme */
    border-color: #F57A2B;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    padding: 12px 24px;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(255, 115, 0, 0.4);
    position: relative;
    overflow: hidden;
}

/* Hover Effects */
.membership_login_buttons .btn-primary:hover,
.membership_login_buttons .btn-primary:focus {
    background-color: #F57A2B;
    border-color: #F57A2B;
    color: #fff;
    box-shadow: 0 6px 15px rgba(255, 115, 0, 0.5);
    transform: scale(1.1);
}

/* Glowing Effect */
.membership_login_buttons .btn-primary::after {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: rgba(255, 115, 0, 0.4);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    border-radius: 10px;
}

.membership_login_buttons .btn-primary:hover::after {
    opacity: 1;
}

input:read-only::placeholder {
    color: transparent;
}

/* Click Effect */
.membership_login_buttons .btn-primary:active {
    transform: scale(0.95);
    box-shadow: 0 3px 8px rgba(255, 115, 0, 0.6);
}

select {
    background-color: #f8f9fa; /* Light gray background */
    color: #333; /* Dark text */
    border: 1px solid #ced4da;
    padding: 8px;
    border-radius: 5px;
}

/* Change color when dropdown is selected (focus) */
select:focus {
    background-color: white; /* Slightly darker background */
    color: black; /* Black text */
    border-color: rgb(209, 27, 27); 
}

/* Change color of dropdown options */
select option {
    background-color: white; /* Slightly darker background */
    color: black; /* Black text */
}

/* Change color of the selected option */
select option:checked {
    background-color: #e44225; /* Slightly darker background */
    color: white; /* Black text */
}


.blog-card {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    border-radius: 10px;
    overflow: hidden;
}

.blog-card:hover {
    transform: scale(1.05);
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

/* Read More Button */
.read-more-btn {
    background-color: white !important;
    color: var(--orange) !important;
    border: 2px solid var(--orange) !important;
    transition: all 0.3s ease-in-out;
}

.read-more-btn:hover {
    background-color: var(--orange) !important;
    color: white !important;
}

/* Modal Header */
.modal-header.bg-orange {
    background-color: var(--orange);
}

/* Bootstrap AOS Animations */
[data-aos] {
    transition-duration: 0.8s !important;
}

/* Default state */
.form-check-input {
    background-color: #F57A2B; /* Orange */
    border-color: #F57A2B;
}

/* When checked */
.form-check-input:checked {
    background-color: #F57A2B !important;
    border-color: #F57A2B !important;
}

/* Handle (circle inside the switch) */
.form-check-input:checked::before {
    background-color: white;
}
/* -----------donate btn---------- */



/* Custom styling for the CAPTCHA section */
.captcha-container {
    background-color: #fff; /* White background */
    padding: 10px 15px; /* Reduced padding for compactness */
    border-radius: 8px; /* Slightly smaller radius */
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
    max-width: 350px; /* Restrict width for compactness */
    margin: 0 auto; /* Center the CAPTCHA container */
}

.captcha-box {
    display: flex;
    flex-direction: row; /* Horizontal layout */
    align-items: center; /* Vertically align image and input */
    justify-content: center; /* Center horizontally */
    gap: 10px; /* Add space between the image and input */
}

.captcha-image {
    width: 120px; /* Adjust the width to fit the compact layout */
    height: 40px; /* Reduced height */
    background-color: #f7f7f7; /* Light gray background for the CAPTCHA image */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    border: 1px solid #ddd; /* Light border around CAPTCHA */
}

.captcha-input {
    width: 120px; /* Match width to the CAPTCHA image */
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    outline: none;
}

.captcha-input:focus {
    border-color: #ff5722; /* Orange border when focused */
}

.captcha-status {
    font-size: 18px;
    color: #ff5722; /* Orange color for the status */
    display: flex;
    justify-content: center;
    margin-top: 5px;
}

.captcha-status span {
    margin-top: 5px;
}

.text-orange {
    color: #ff5722; /* Orange color for the label */
}

/* Additional responsiveness */
@media (max-width: 576px) {
    .captcha-container {
        padding: 8px 12px; /* Slightly smaller padding for mobile */
    }

    .captcha-image {
        width: 100px;
        height: 30px;
    }

    .captcha-input {
        width: 100px; /* Adjust input width for smaller screens */
    }
}


/*  email verification */
:root {
    --primary-color: #ff6b00;
    --secondary-color: #ffffff;
    --disabled-bg-color: #ff9d5c;
    --disabled-border-color: #ff9d5c;
    --disabled-text-color: #fff;
  }
  
  body {
    background-color: #f8f9fa;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  }
  
  /* Toast Message Styling */
  #toastMessage {
    color: white;
    font-weight: bold;
    width: 100%;
    max-width: 100%;
  }
  
  /* Success Toast - Fully Orange */
  .toast-success {
    background-color: #FF6B00 !important;
    border-left: 5px solid #E65A00 !important;
    color: white !important;
  }
  
  /* Error Toast - White Background with Orange Border & Text */
  .toast-error {
    background-color: #ffffff !important;
    color: #FF6B00 !important;
    border-left: 5px solid #FF6B00 !important;
  }
  
  /* Position the toast at the top below the header */
  .toast-container {
    position: fixed;
    top: 60px; /* Adjust based on header height */
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 600px;
    z-index: 1050;
  }
  
  
  
  .verification-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 400px; /* Decrease Width */
    margin: auto;
  }
  
  .vcard-header {
    background-color: #F57A2B;
    color: white;
    text-align: center;
    padding: 20px;
    font-weight: 600;
    font-size: 1.5rem;
  }
  
  .card-body {
    padding: 30px;
  }
  
  .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(255, 107, 0, 0.25);
  }
  
  .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--secondary-color);
  }
  
  .btn-primary:hover {
    background-color: #e05e00;
    border-color: #e05e00;
  }
  
  .btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
  }
  
  .btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--secondary-color);
  }
  
  /* Style for disabled buttons */
  .btn-primary:disabled,
  .btn-primary[disabled] {
    background-color: var(--disabled-bg-color);
    border-color: var(--disabled-border-color);
    color: var(--disabled-text-color);
    cursor: not-allowed;
  }
  
  .otp-container {
    display: none;
  }