* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #FFFAEF;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 414px;
    margin: 0 auto;
    background-color: #FFFAEF;
    min-height: 100vh;
    position: relative;
}

.logo-container {
    flex-direction: column;
    display: flex;
    text-align: center;
    align-items: center;
    max-width: 414px;
    padding-top: 50px;
    margin: 0 auto;
}

.slider-container {
    position: relative;
    margin: 20px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.slider {
    position: relative;
    height: 200px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: white;
}

.total-amount-section {
    margin: 20px;
}

.total-amount-card {
    background: linear-gradient(45deg, #1F98DE, #3DBD9F);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #ECE0B2;
}

.amount-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 5px;
}

.amount-header i {
    color: white;
    font-size: 24px;
}

.amount-header h2 {
    color: white;
    font-size: 20px;
    font-weight: 600;
}

.amount-display {
    margin: 0;
    margin-bottom: 5px;
}

.amount {
    font-size: 36px;
    font-weight: 700;
    color: white;
}

.download-section {
    margin: 20px;
    padding: 20px;
    background: white;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.download-header h3 {
    color: #1F98DE;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.download-header p {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

.download-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.download-btn {
    display: block;
    transition: transform 0.2s ease;
}

.download-btn:hover {
    transform: scale(1.05);
}

.download-btn img {
    height: 40px;
    border-radius: 8px;
}


.contribute-section {
    margin: 20px;
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.contribute-header h3 {
    color: #1F98DE;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}


label {
  display: block;
  margin-bottom: 4px;
  color: #222;
  text-align: left;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

/* Text Input */
input[type="text"],
input[type="number"],
input[type="email"],
input[type="password"],
select {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

.select2-search__field{
    font-size: 16px; /* for disable ios zooming*/
}

input:focus,
select:focus {
  border-color: #1F98DE;
  box-shadow: 0 0 6px rgba(31, 152, 222, 0.5);
}

/* Select Box */
select {
  background: #fff;
  cursor: pointer;
}

/* Checkbox */
input[type="checkbox"] {
  accent-color: #3DBD9F; /* modern browsers */
  transform: scale(1.2);
  margin-right: 8px;
  cursor: pointer;
}

/* Checkbox Label */
.checkbox-label {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 14px;
  cursor: pointer;
}

/* Button (optional, for form submission) */
button, .button {
  background: #1F98DE;
  color: #fff;
  padding: 10px 18px;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover, .button:hover {
  background: #3DBD9F;
}

/* Single select */
.select2-container .select2-selection--single {
    height: 38px;               /* desired height */
    line-height: 38px;          /* vertically center text */
    margin-bottom: 15px;

}

/* The text inside */
.select2-container .select2-selection--single .select2-selection__rendered {
    line-height: 38px;          /* match height */
}

/* The arrow */
.select2-container .select2-selection--single .select2-selection__arrow {
    height: 38px;               /* match height */
}

.flex{
    display: flex;
    justify-content: space-between;
    align-items: center; 
}


/* History Button */
.history-section {
    margin: 20px;
}

.history-btn {
    width: 100%;
    background: linear-gradient(45deg, #1F98DE, #3DBD9F);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 15px rgba(162, 31, 75, 0.3);
}

.history-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(162, 31, 75, 0.4);
}

.history-btn:active {
    transform: translateY(0);
}

.footer {
    margin-top: 40px;
    padding: 20px;
    text-align: center;
}

.footer-content p {
    color: #666;
    font-size: 12px;
    margin-bottom: 8px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #1F98DE;
    text-decoration: none;
    font-size: 12px;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #1F98AA;
}
a{
    text-decoration: none;
}