* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #f2f2f2;
  font-family: 'Segoe UI', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  background: white;
  padding: 44px 44px;
  border-radius: 8px;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* La boîte qui contient le logo et le texte */
.header-logo-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

/* L'image elle-même */
.logo-img {
    width: 24px;   /* C'est ça qui va la rendre petite ! */
    height: 24px;
}

/* Le texte à côté */
.brand-name {
    font-size: 20px;
    font-weight: 600;
    color: #737373;
    font-family: sans-serif;
}


h1 {
  font-size: 24px;
  font-weight: 600;
  color: #1b1b1b;
  margin-bottom: 12px;
}

p {
  font-size: 15px;
  color: #1b1b1b;
  margin-bottom: 24px;
}

input {
  width: 100%;
  padding: 8px 0;
  font-size: 15px;
  border: none;
  border-bottom: 1px solid #666;
  outline: none;
  margin-bottom: 24px;
  background: transparent;
}

input:focus {
  border-bottom: 2px solid #0067b8;
}

.btn {
  display: block;
  width: fit-content;
  margin-left: auto;
  background: #0067b8;
  color: white;
  text-decoration: none;
  padding: 8px 20px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 2px;
  margin-bottom: 24px;
  text-align: center;
}

.btn:hover {
  background: #005a9e;
}

.links {
  display: flex;
  gap: 24px;
}

.links a {
  color: #0067b8;
  font-size: 13px;
  text-decoration: none;
}

.links a:hover {
  text-decoration: underline;
}   
.header-logo-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.logo-img {
    width: 24px;
    height: 24px;
}

.brand-name {
    font-size: 20px;
    font-weight: 600;
    color: #737373;
    font-family: sans-serif;
}
