:root {
  --primary-color: #1D2934;
  --secondary-color: #53AFA8;
  --accent-color: #e74c3c;
  --light-gray: #f5f7fa;
}

html, body {
  height: 100%;
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--light-gray);
}

.login-container {
  display: flex;
  height: 100vh;
}

.left-image {
    flex: 1;
    background: url('../img/mayaHero1.png') no-repeat center center;
    background-size: cover;
}

.right-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  background-color: #fff;
}

.form-wrapper {
  width: 100%;
  max-width: 350px;
}

.logo {
  text-align: center;
  margin-bottom: 30px;
}

.logo img {
  max-height: 60px;
}

.logo h2 {
  margin-top: 15px;
  color: var(--primary-color);
}

.error-message {
  color: var(--accent-color);
  margin-bottom: 15px;
  text-align: center;
}

.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 5px;
  color: var(--primary-color);
}

.form-group input[type="email"],
.form-group input[type="password"] {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.form-group input:focus {
  outline: none;
  border-color: var(--secondary-color);
}

.form-group.remember {
  flex-direction: row;
  align-items: center;
}

.form-group.remember label {
  margin: 0 0 0 5px;
  color: #495057;
}

.btn-submit {
  width: 100%;
  padding: 12px;
  background: var(--secondary-color);
  border: none;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-submit:hover {
  background: #3d8f89;
}
.btn-second {
    width: 100%;
    padding: 12px;
    background: var(--secondary-color);
    border: none;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

    .btn-second:hover {
        background: #3d8f89;
    }
.links {
  margin-top: 15px;
  text-align: center;
}

.links a {
  display: block;
  color: var(--secondary-color);
  margin: 5px 0;
  text-decoration: none;
  transition: color 0.3s;
}

.links a:hover {
  color: var(--primary-color);
}

.login-footer {
  text-align: center;
  margin-top: 30px;
  color: #888;
  font-size: 0.9rem;
}

.login-footer .version {
  color: #aaa;
  font-size: 0.8rem;
}
