/* style2.css */
body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  margin: 0;
  padding: 0;
}

.container {
  background-color: #fff;
  width: 60%;
  margin: 20px auto;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 768px) { /* Adjust the max-width as needed for your design */
  .container {
    width: 80%;
  }
}

.language-flags {
/*  position: absolute;
  top: 10px;
  right: 10px;
*/
  display: flex;
  justify-content: flex-end; /* This will align the flags to the right side */
  margin-bottom: 1px;
}

.language-flags img {
/*  width: 30px;
  height: 20px;
*/  margin-left: 5px;
  cursor: pointer;
  align-items: right;
}

.register {
  background-color: #f9f9f9;
  padding: 20px;
  border: 1px solid #e1e1e1;
/*  display: flex;
  justify-content: space-between;
  align-items: center;*/
}

h1 {
  color: #333;
  text-align: center;
}

h4 {
  color: #4CAF50; /* This sets a green color for h4, which you can change if needed */
  /* Other styles... */
}

.reg_section h3 {
  background-color: #e1e1e1;
  padding: 10px;
  margin-top: 0;
  text-align: center; 
}

.reg_section img {
  display: block; /* Make the image a block-level element */
  margin-left: auto; /* These two margin properties will */
  margin-right: auto; /* center the image within the div */
  max-width: 100%; /* Optional: makes image responsive */
}

label {
  display: block;
  margin: 10px 0 5px;
  color: #666;
}

input[type="text"],
input[type="email"],
select {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box; /* Added to maintain width */
  font-weight: bold; /* Makes text inside inputs bolder */
  color: #333; /* Dark color for input text */ 
}

input[type="checkbox"] {
  margin-right: 5px;
}

button,
input[type="submit"] {
  background-color: #5cb85c;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  width: 90%;
  box-sizing: border-box; /* Added to maintain width */
}

input[type="submit"]:hover {
  background-color: #4cae4c;
}

.submit {
  margin-top: 20px;
}f

p {
  color: #333;
}

a {
  display: inline-block;
  background-color: #4CAF50;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 20px;
}
a:hover {
  background-color: #45a049;
}

#payAmount {
      font-size: 1.2rem;
      font-weight: bold;
    }
/* You may add more custom styles as per your needs */

