/* login.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

.container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.back-arrow {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 24px;
  color: #a46a87;
  cursor: pointer;
  z-index: 1000;
  transition: color 0.3s;
  text-decoration: none;
}

.back-arrow:hover {
  color: #8e5973;
}

.login-box {
  background-color: white;
  padding: 40px;
  border-radius: 25px;
  width: 320px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.login-box h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 13px;
  color: #666;
  margin-bottom: 25px;
}

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

.input-group label {
  display: flex !important;
  justify-content: flex-start !important; /* alignement à gauche */
  align-items: center;
  gap: 6px;
  font-size: 14px;
  margin-bottom: 5px;
  color: #303131;
}
.input-group input {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: none;
  background-color: #e6e6e6;
}

.options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  margin-bottom: 20px;
}

.options a {
  color: #555;
  text-decoration: none;
}

.login-btn {
  background-color: #a46a87;
  color: white;
  border: none;
  padding: 12px;
  width: 100%;
  border-radius: 20px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.login-btn:hover {
  background-color: #8e5973;
}

.signup-text {
  font-size: 13px;
  margin-top: 15px;
  color: #555;
}

.signup-text a {
  color: #a46a87;
  text-decoration: none;
  font-weight: bold;
}
