/* Global styles for the form */
.form-container {
  max-width: 400px;
  width: 100%;
  padding: 2rem;
  border-radius: 1rem; /* Plus arrondi */
  background-color: #ffffff;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  background: linear-gradient(135deg, #f7f7f7 0%, #ffffff 100%);
  transition: all 0.3s ease-in-out;
}

.form-container:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.753);
}

/* Title styles */
.title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #00698f; /* blue title */
  margin-bottom: 1.5rem;
}

/* Form Input Styles */
.input-group input {
  width: 100%;
  padding: 0.75rem 1.25rem;
  border-radius: 0.5rem;
  border: 1px solid #ccc;
  background-color: #f9f9f9;
  color: #333;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.input-group input::placeholder {
  color: #aaa;
}

.input-group input:focus {
  border-color: #00698f; /* Border color similar to button */
  background-color: #fff;
  outline: none;
  box-shadow: 0 0 10px rgba(0, 105, 143, 0.2);
}

.input-group input:focus::placeholder {
  color: #00698f; /* Placeholder color changes to match focus */
}

/* Forgot link styles */
.forgot a {
  color: #00698f;
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.forgot a:hover {
  color: #005a75;
}

/* Sign-in button styles */
.sign {
  background-color: #00698f;
  padding: 0.75rem;
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.2s ease;
  cursor: pointer;
}

.sign:hover {
  background-color: #005a75;
  transform: translateY(-3px);
}

.sign:active {
  transform: translateY(1px);
}

/* Social message line styles */
.social-message .line {
  height: 1px;
  background-color: #ddd;
  margin: 1rem 0;
}

/* Signup link styles */
.signup a {
  color: #00698f;
  text-decoration: none;
  transition: color 0.2s ease;
}

.signup a:hover {
  text-decoration: underline;
  color: #005a75;
}

/* Personnaliser la couleur de la sélection de texte (Ctrl + A) */
::selection {
  background-color: #00698f;
  color: white;
}

/* Comic button styles (optional for testing) */
.comic-button {
  display: inline-block;
  padding: 10px 20px;
  font-size: 1.25rem;
  font-weight: bold;
  text-align: center;
  color: #fff;
  background-color: #00698f;
  border: 2px solid #00698f;
  border-radius: 10px;
  box-shadow: 5px 5px 0px #000;
  transition: all 0.3s ease;
  cursor: pointer;
}

.comic-button:hover {
  background-color: #fff;
  color: #00698f;
  border: 2px solid #00698f;
  box-shadow: 5px 5px 0px #00698f;
}

.comic-button:active {
  background-color: #FF6F61 ;
  box-shadow: none;
  transform: translateY(4px);
}



/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
  .form-container {
    padding: 1.5rem;
    max-width: 90%;
  }

  .title {
    font-size: 1.75rem;
  }

  .input-group input {
    padding: 0.75rem 1rem;
  }

  .sign {
    font-size: 1rem;
  }

  .comic-button {
    font-size: 1rem;
  }
}


