/* Le header */
.header{
    background-color:  #ccc;
    padding: 20px;
}

.header-top{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo-text {
    font-size: 50px;
    text-align: center;
    font-weight: bold;
    font-family: 'Anton', sans-serif;
}

.logo-img {
    position: absolute;
    right: 20px;
    width: 120px;
}

.nav ul {
    display: flex;
    justify-content: center;
    gap: 30px;
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.nav a {
    text-decoration: none;       
    background-color: #d4c400;   
    padding: 10px 20px;          
    color: black;               
    font-weight: bold;          
    display: inline-block;       
}

.nav a:hover {
    background-color: #b5a800;
}







/* TEST */
body {
  background-color: #f4f4f4;
  font-family: 'Segoe UI', sans-serif;
  padding: 20px;
}

h1 {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 30px;
}

form {
  max-width: 480px;
  margin: 0 auto;
  background: white;
  padding: 40px 30px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
  display: block;
}

.form-control {
  width: 100%;
  padding: 10px 14px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  box-sizing: border-box;
}

.form-control:focus {
  border-color: #2ecc71;
  outline: none;
}

.btn-success {
  width: 100%;
  padding: 12px;
  background-color: #2ecc71;
  color: white;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.btn-success:hover {
  background-color: #27ae60;
}

.text-danger {
  color: #e74c3c;
  font-size: 0.82rem;
  margin-top: 4px;
}

.btn-auto {
  width: fit-content;
}

.home {
  text-align: center;
}

.card {
  max-width: 480px;
  margin: 0 auto;
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.btn-warning {
  padding: 10px 20px;
  background-color: #f39c12;
  color: white;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
}

.btn-danger {
  padding: 10px 20px;
  background-color: #e74c3c;
  color: white;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.card form {
  display: inline;
}

.card a, .card button {
  margin-right: 10px;
}



