body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #e8e7f0;
    font-family: "Poppins", sans-serif;
}

.container {
    display: flex;
    width: 900px;
    height: 600px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    overflow: hidden;
    background-color: #fff;
}

.login-section, .signup-section {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-section h2, .signup-section h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #333;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: #555;
}

.input-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
}

button {
    width: 100%;
    padding: 12px;
    background-color: #2F2A51;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s;
}

#signup-button:hover, #login-button:hover {
    background-color: #06182C;
}

.signup-text, .login-text, .error-message {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
}
.signup-text a, .login-text a {
  color: #2F2A51;
  text-decoration: none;
}


.image-section {
  flex: 1;
}

.image-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.error-message{
  display: none;
  color:crimson;
}
.language-switch {
  display: flex;
  justify-content: flex-end;
  gap: 6px;
  margin-bottom: 20px;
}

#bg, #en {
  width:100px;
  background: transparent;
  border: 1px solid #2f2a4a;
  color: #2f2a4a;
  padding: 4px 8px;
  font-size: 12px;
  border-radius: 6px;
  cursor: pointer;
}

#bg.active, #en.active {
  background: #2f2a4a;
  color: white;
}