/* styles.css */
.container-do {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200vh;
margin-top:5px;
}
.donation-box{
     border-color: #06BBCC;
    border-radius: 20px;
    border-style: solid;
    margin-left:30px;
    overflow: hidden;
    height:auto;

}
#personalForm{
  margin-top: 30px;
}
.don-name{
 text-align: center;
 color:#06BBCC; 
 margin-top:20px;
}
.donation-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;

}

.column {
  margin: 0 20px;
  width: 100%;
  max-width: 400px; /* Set maximum width for columns */
}

.input-row {
  display: flex;
  flex-wrap: wrap;
}

.input-row input {
  flex: 1;
  margin-right: 10px;
}

input[type="text"],
input[type="tel"],
input[type="email"],
textarea,
select,
button {
  width: calc(100% - 20px);
  margin-bottom: 10px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  transition: all 0.3s ease;
}

input[type="text"]:focus,
textarea:focus,
button:focus {
  border-color: #06BBCC;
  box-shadow: 0 0 5px rgba(76, 175, 80, 0.5);
}
.donate-btn{
width: 152px;
align-content:center;
margin-left:32%;
margin-top:30px;
}

button {
  background-color: #06BBCC;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #45a049;
}

/* Additional styling for QR Code */

.bank-qr{
margin-left:50px;
}
.bank-qr img{
  width:500px;
  height:300px;
}
.column img {
  max-width: 100%;
  margin-top: 20px;
}

/* Media Query for smaller screens */
@media screen and (max-width: 600px) {
  .column {
    margin: 20px 0;
  }
}
