body {
  background: #30B7FF;
  /* background: linear-gradient(90deg, #5de0e6, #004aad); */
  margin: 0;
  padding: 0;
  font-family: "Arimo", sans-serif;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  flex-wrap: wrap; /* Allow items to wrap */
}

.white{
  color: white;
}

a.white{
  color: white;
}

.registration-box {
  /* background-color: #ffffff; */
  border-radius: 10px;
  padding: 20px;
  width: 400px; /* Adjust the width as needed */
  margin: 5px;
}

.login-box {
  /* background-color: #ffffff; */
  border-radius: 10px;
  padding: 20px;
  width: 300px; /* Adjust the width as needed */
  margin: 5px;
}

h1 {
  text-align: center;
  font-size: 31px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 15px;
  display: flex; /* Added */
  flex-direction: column; /* Added */
  align-items: flex-start; /* Added */
  margin-top:25px;
}

label {
  font-weight: bold;
}

input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

button {
  display: block;
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 5px;
  background-color: #30b7ff;
  color: #ffffff;
  font-size: 16px;
  cursor: pointer;
}

.hidden {
  display: none;
}

.white {
  color: white;
}

button.login-button {
  background-color: #5CE1E6;
  color: #ffffff; /* Change the text color to white */
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

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

.picture-column img {
  margin: 50px;
}

/* .picture-column img{
  margin-left: 50px;
}

.login-registration{
  margin-right: 50px;
} */

/* Styles for mobile devices */
@media only screen and (max-width: 767px) {
  .registration-box,
  .login-box {
    width: 100%; /* Take full width on mobile */
    padding: 0;
  }

  .picture-column {
    order: -1; /* Stack above other elements */
    text-align: center;
    width: 100%; /* Take full width */
    margin-bottom: 0; /* Remove the margin-bottom for better alignment */
    width: 50%;
    margin-top: 10px;
  }
  
  .picture-column img {
    max-width: 50%; /* Limit the image width to the container's width */
    height: auto; /* Maintain the aspect ratio */
    margin: 0;
  }

  .container {
    height: 100%;
  }
}
