:root {
  --primary-color: #F75D59;
  --secondary-color: #FFE4E1;
  --background-color: #FFFAF0;
  --text-color: #2C3E50;
  --accent-color: #3498DB;
  --card-background: #FFFFFF;
  --form-background: #FFFFFF;
}

/* Header Styles */
.site-header, header {
  background: linear-gradient(135deg, var(--primary-color), #FF6B6B);
  color: white;
  padding: 0.1rem 2rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
h1 {
  color:#FFFFFF;
}
.site-header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1250px;
  margin: 0 auto;
}
.site-title, header h1 {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--primary-color), #FF6B6B);
  color: white;
  text-align: center;
  padding: 0.2rem 1.5rem;
}
.hero-content {
  max-width: 1250px;
  margin: 0 auto;
}
.hero-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.hero-description {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}
body{
    background-color: var(--background-color);
    font-size: 12px;
}

/************************************** connexion 3 ring ****************************************************/
@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300&display=swap");
#ring * {
  margin: 0;
  padding: 2px;
  box-sizing: border-box;
  font-family: "Quicksand", sans-serif;
}
#ring {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 62vh;
  background: var(--background-color);
  width: 100%;
  overflow: hidden;
}
.ring {
  position: relative;
  width: 500px;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ring i {
  position: absolute;
  inset: 0;
  border: 2px solid black;
  transition: 0.5s;
}
.ring i:nth-child(1) {
  border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%;
  animation: animate 6s linear infinite;
}
.ring i:nth-child(2) {
  border-radius: 41% 44% 56% 59%/38% 62% 63% 37%;
  animation: animate 4s linear infinite;
}
.ring i:nth-child(3) {
  border-radius: 41% 44% 56% 59%/38% 62% 63% 37%;
  animation: animate2 10s linear infinite;
}
.ring:hover i {
  border: 6px solid var(--clr);
  filter: drop-shadow(0 0 20px var(--clr));
}
@keyframes animate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate2 {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
#ring .login {
  position: absolute;
  width: 300px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}
#ring .login h2 {
  font-size: 2em;
  color: var(--text-color);
}
#ring .login .inputBx {
  position: relative;
  width: 100%;
}
#ring .login .inputBx input {
  position: relative;
  width: 100%;
  padding: 12px 20px;
  background: transparent;
  border: 2px solid var(--primary-color);
  border-radius: 40px;
  font-size: 1.2em;
  color: var(--text-color);
  box-shadow: none;
  outline: none;
}
#ring .login .inputBx input[type="submit"] {
  width: 100%;
  background: #0078ff;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  border: none;
  cursor: pointer;
}
#ring .login .inputBx input::placeholder {
  color: var(--text-color)/* rgba(255, 255, 255, 0.75)*/;
}
#ring .login .links {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}
#ring .login .links a {
  color: var(--text-color);
  text-decoration: none;
  margin-top: auto;
  text-align: center;
  align-items: center;
}

/********************************************** FOOTER *****************************************************/
.site-footer, footer {
  background-color: var(--primary-color);
  color: white;
  padding: 2rem;
  margin-top: auto;
  text-align: center;
  align-items: center;
}
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-links, .social-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
}
.footer-links a, .social-links a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-links a:hover, .social-links a:hover {
  color: var(--secondary-color);
}