body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #6b93cc;
  box-sizing: border-box;
}

/* HEADER */

.header-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: darkblue;
  color: white;
  padding: 10px 20px;
}

.website-logo img {
  width: 110px;
  height: auto;
  display: block;
}

.header-navigation ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.header-navigation a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.header-navigation a:hover {
  color: #6b93cc;
  background-color: #e6d5c3;
  transform: scale(1.15);
}

/* HEADER CARD */

.header-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  background: hotpink;
  color: white;
  flex-wrap: wrap;
}

/* FORM */

form {
  background: whitesmoke;
  border: 1px solid #e8e8fb;
  border-radius: 4px;
  padding: 20px;
  max-width: 500px;
  margin: 40px auto 0 auto;

  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* INPUTS */

input[type="text"],
input[type="email"],
input[type="password"] {
  width: 100%;
  font-size: 15px;
  padding: 5px 0;
  border: none;
  outline: none;
}

input[type="radio"] {
  accent-color: hotpink;
  width: 18px;
  height: 18px;
}

input[type="checkbox"] {
  accent-color: hotpink;
  width: 18px;
  height: 18px;
}


/* RADIO GROUP (FIXED) */

.radio-group {
  background: white;
  border: none;
  border-radius: 6px;
  padding: 15px;

  box-shadow: 0 1px 3px rgba(50, 50, 93, 0.15),
    0 4px 6px rgba(112, 157, 199, 0.15);
}

/* RADIO OPTION */

.radio-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
}

/* CHECKBOX GROUP */

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* BUTTON */

button {
  background: hotpink;
  border: none;
  border-radius: 4px;
  width: 100%;
  font-size: 16px;
  color: white;
  font-weight: bold;
  padding: 10px;
  margin-top: 20px;
  cursor: pointer;
}

footer {
  text-align: left;
  color: white;
  margin-top: 40px;
}

/* PLACEHOLDER */

::-webkit-input-placeholder {
  color: #aab7c4;
}

/* TYPOGRAPHY */

h1 {
  margin-bottom: 10px;
  font-size: 44px;
  text-align: center;
  color: darkblue;
}

p {
  margin: 0;
}


/* RESPONSIVE */

@media (min-width: 600px) {
  .news-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .news-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 600px) {
  .header-card {
    flex-direction: column;
    text-align: center;
  }
}