* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #f0f2f5;
}

.container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 100vh;
}

/* Partie gauche */
.left {
  width: 40%;
}

.left h1 {
  color: #1877f2;
  font-size: 60px;
}

.left p {
  font-size: 24px;
  margin-top: 10px;
}

/* Partie droite */
.right {
  width: 80%;
 border-left: 2px solid rgb(220, 218, 218);
 border-bottom: 2px solid rgb(223, 220, 220);
 height: 741px;
 
}

.login-box {
 
  padding: 20px;
  border-radius: 10px;

  display: flex;
  flex-direction: column;
  position: relative;
  top: 150px;
  background-color: transparent;
}

.login-box input {
  padding: 12px;
  margin-bottom: 10px;
  border: 1px solid #dddfe2;
  border-radius: 6px;
  font-size: 16px;
}

.login-btn {
  background: #1877f2;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-size: 18px;
  cursor: pointer;
}

.login-btn:hover {
  background: #166fe5;
}

.forgot {
  text-align: center;
  margin: 10px 0;
  color: #1877f2;
  text-decoration: none;
}

hr {
  margin: 15px 0;
}

.create-btn {
  background: #42b72a;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

.create-btn:hover {
  background: #36a420;
}
.images {
  position: relative;
  margin-top: 20px;
 
}

.images img {
  border-radius: 15px;
  position: absolute;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.img1 {
  top: 0;
  left: 0;
}

.img2 {
  top: 40px;
  left: 120px;
}

.img3 {
  top: 120px;
  left: 60px;
}
.left img{
    height: 125px;
    width: 125px;
    position: relative;
    top: 50px;
    left: 20px;
   
}
.left p{
font-size: 54px;
left: 40px;
position: relative;
top: 280px;
}
.images img{
  height:250px;
  width: 200px;
  object-fit: cover;
}
.images {
 
  width: 300px;
  height: 350px;
  position: relative;
  top: 190px;
  left:-30px;
  
}
.imput{
width: 80%;
 border-left: 2px solid rgb(220, 218, 218);
 border-bottom: 2px solid rgb(223, 220, 220);
 height: 741px;
}
.input-group {
  position: relative;
  margin: 20px;
}

.input-group input {
  width: 250px;
  padding: 10px;
  font-size: 16px;
}

.input-group label {
  position: absolute;
  left: 10px;
  top: 10px;
  color: gray;
  transition: 0.3s;
  pointer-events: none;
}

/* Quand on clique ou écrit */
.input-group input:focus + label,
.input-group input:valid + label {
  top: -10px;
  font-size: 12px;
  color: blue;
}
.forgot {
  width: 642px;
  height: 40px;
  margin-left: 20PX;
  margin-top: -30px;
}

.forgot a {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  line-height: 40px;
  text-decoration: none;
  color: black;
  margin-top: 3px;

}

.forgot:hover {
  background-color: rgb(237, 234, 234);
  border-radius: 50px;
}
.login-btn {
  width: 300px;
  height: 45px;
  border: none;
  border-radius: 50px;
  background: #1877f2;
  color: white;
  font-size: 16px;
  cursor: pointer;
}

/* Spinner */
.loader {
  border: 3px solid white;
  border-top: 3px solid transparent;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  margin: auto;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}