html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    background-color: #1f1f1f;
    color: #212226;
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
}

.header-img {
    width: 20%;
    margin-top: 95px;
}

.logo-div{
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.container {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.p-tag{
    margin: 0px;
}

.form-p-tag{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: black;
}

.row{
    color: black;
}

.col{
    margin-top: 20px;
}

.col1{
    margin-top: 0px!important;
}

hr{
    margin: 25px !important;
}

.card-main-div {
    margin:70px 20px 20px 20px;
    display: flex;
    justify-content: center;
}


.card-body {
    flex: 1 1 auto;
    color: var(--bs-card-color);
    padding: 35px;
}

.radio-div{
    display: flex;
}

.radio-btn{
    margin-left: 10px;
    margin-right: 10px;
}

.button-row {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-top:97px;
}

.submit-btn {
    margin-left: 25px;
    font-size: x-large;
    color: white;
    background-color: #02a969;
    border: none;
    padding: 0px 20px;
}

.card-donation{
    margin-bottom: 30px;
    width:70%;
}

.amount-container {
    display: flex;
    align-items: center;
}

.amount-container .symbol {
    background-color: #007bff;
    color: white;
    padding: 8px 10px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    font-size: 18px;
}

.amount-container input[type="text"] {
    border: 1px solid #ccc;
    border-left: none;
    padding: 8px 10px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    outline: none;
    width: 200px;
    font-size: 16px;
}

.pay-button {
    background-color: #28a745; 
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

.pay-button:hover {
    background-color: #218838; 
}

.amount-input-box{
    height: 43px;
}

#contact {
    position: relative;
}   

.add-div {
    height:100px;
    display: block;
    background-color: #1f1f1f;
}

.no-arrows {
    -moz-appearance: textfield; /* Firefox */
    -webkit-appearance: none;  /* Chrome, Safari, Edge */
    appearance: none;   /* Standard */     
  }

  /* Optional: Remove padding adjustments in WebKit-based browsers */
  .no-arrows::-webkit-inner-spin-button,
  .no-arrows::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }

  .error-message {
    color: red;
    margin-top: 5px;
  }


