* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
}

body {
  height: 100vh;
  background: linear-gradient(135deg, #e0c3fc, #8ec5fc);
  display: flex;
  justify-content: center;
  align-items: center;
  
  height: 100vh;
  display: flex;
  justify-content: center;    /* Centre horizontalement */
  align-items: center;        /* Centre verticalement */
  background: linear-gradient(135deg, #e0c3fc, #8ec5fc);
  margin: 0;
  
}

.page-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}





/* Container */
.login-container {
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  width: 300px;
  padding-bottom:10px;
}

.sera-container{
  //backdrop-filter: blur(10px);
  position: relative;
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

/* Avatar circle */
.avatar {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #00264d;
  border-radius: 50%;
  padding: 15px;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar {
  background: #00264d;
  color:#fff;
}

/* Form */
.login-form {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
}

.input-group {
  display: flex;
  align-items: center;
  background: #ccc;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 3px 3px;
}

.input-group .icon {
  margin-right: 10px;
  margin-left: 10px;
}
.input-login{
  background:#00264d;
}

.input-group input {
  background: #;
  border: none;
  outline: none;
  //color: white;
  width: 100%;
}

.options {
  display: flex;
  justify-content: space-between;
  font-size: 0.8em;
  margin-bottom: 20px;
  color: white;
}

.options a {
  color: #d0e0f0;
  text-decoration: none;
}

.login-button {
  background-color: #ffffff;
  color: #00264d;
  font-weight: bold;
  border: none;
  padding: 10px;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.login-button:hover {
  background-color: #e0e0e0;
}

.cercle {
  width: 80px;           /* largeur */
  height: 80px;          /* hauteur identique */
  
  border-radius: 50%;     /* rend le div parfaitement rond */
}
