* {
  box-sizing: border-box;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background-color: #f4f4f4;
  padding: 40px 20px;
}

.header {
  width: 100%;
  max-width: 1000px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 60px; /* Adjust as needed */
}

.blue-line {
  width: 100%;
  max-width: 1000px;
  height: 15px;
  background-color: #007bff; /* Bootstrap blue */
  margin-top: 10px;
}

.container {
  width: 100%;
  max-width: 1000px;
  display: flex;
  margin-top: 30px;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.info-left-section {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  padding: 25px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.info-left-section div {
  margin-bottom: 15px;
}

.login-right-section {
  flex: 1;
  min-width: 300px;
  max-width: 400px;
  padding: 25px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.login-container h2 {
  margin-top: 0;
  margin-bottom: 20px;
}

.login-container input {
  width: 100%;
  padding: 8px;
  margin: 5px 0 15px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.login-container button {
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.login-container button:hover {
  background-color: #0056b3;
}
/* Modal styles */
.modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

.modal-content {
  background-color: #fff;
  margin: 15% auto;
  padding: 20px;
  border-radius: 8px;
  width: 400px;
  text-align: center;
  position: relative;
}

.modal-content label {
  display: block;
  margin-top: 10px;
}

.modal-content input[type="email"] {
  margin-top: 5px;
  width: 90%;
  padding: 6px;
}

.modal-content button {
  margin: 10px 5px;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 20px;
  cursor: pointer;
}

.button-group {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.button-group button {
  padding: 10px 20px;
  font-size: 14px;
}

/* Consistent button styling */
.modal-content button,
.login-container input[type="text"],
.login-container input[type="password"] {
  padding: 10px 20px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-top: 10px;
}

/* Button alignment inside modal */
.modal-content button {
  margin: 10px 5px;
}

.modal-content button:hover,
.login-container input[type="text"]:focus,
.login-container input[type="password"]:focus,
#emailInput:focus {
  outline: 2px solid #007BFF; /* Blue focus ring */
  border-color: #007BFF;
}

.input-group {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.input-group label {
  white-space: nowrap;
}

/* Match login button styles */
#sendBtn,
#okBtn {
  background-color: #007BFF; /* Standard blue like login button */
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#sendBtn:hover,
#okBtn:hover {
  background-color: #0056b3; /* Darker on hover */
}

#avbrytBtn {
  background-color: transparent;
  border: 1px solid #ccc;
  padding: 10px 20px;
  font-size: 14px;
  cursor: pointer;
}

#avbrytBtn:focus {
  outline: 2px solid #007BFF;
  border-color: #007BFF;
}