
body {
    font-family: poppins-semibold,poppins,sans-serif;
    background-color: #e6f2ff;
    display: flex;
    flex-direction: column;
    align-items: center;
    /*justify-content: center;*/
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

.container {
    width: 90%;
    max-width: 462px;
    padding: 20px;
    box-sizing: border-box; /* Ensure padding doesn't affect width calculation */
    text-align: left; /* Center text inside the container */
}

.card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}



.card-content {
    padding: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group.center {
    text-align: center;
}


.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-control {
    width: 100%;
    padding: 8px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    box-sizing: border-box;
}

.form-select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    background-color: white;
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn-primary {
    background-color: #007bff;
    color: white;
}

.btn-primary:hover {
    background-color: #0056b3;
}

.btn-primary:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

.btn-secondary {
    background-color: #f8f9fa;
    color: #007bff;
}

.btn-secondary:hover {
    background-color: #e2e6ea;
}

.payment-info {
    text-align: center;
    margin-bottom: 20px;
}

.payment-warning {
    color: #dc3545;
    margin: 15px 0;
    font-size: 0.9em;
}

.upi-id {
    /*background-color: #FFffff;*/
    padding: 10px;
    border-radius: 4px;
    margin: 15px 0;
    color: red ;
    /*font-family: monospace;*/
      word-break: break-all;
  white-space: normal;
  overflow-wrap: break-word;
}
.button-group {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.divider {
  border: none;
  height: 1px;
  background-color: #ccc;
  margin: 20px 0;
}
