* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: linear-gradient(200deg,
    rgb(248, 43, 43) 10%,
    black 100%);
  color: white;
  
}

/* ---------- HEADER ---------- */
.header {
  padding: 20px 60px;
  border-bottom: 1px solid gray;
}

.header h1 {
  color: red;
  font-size: 40px;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

/* ---------- CENTER SECTION ---------- */
.signin-section {
  display: flex;
  justify-content: center;
  margin-top: 80px;
  flex-direction: column;
  align-items: center;
}

/* ---------- SIGNIN BOX ---------- */
.signin-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  width: 400px;
  margin-bottom: 80px;
}

.signin-box h2 {
  margin-bottom: 10px;
}

.signin-box p {
  margin-bottom: 20px;
}

/* input */
.signin-box input {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid gray;
  background: transparent;
  color: white;
  
}

/* button */
.signin-box button {
  width: 100%;
  padding: 14px;
  border-radius: 5px;
  background: red;
  color: white;
  border: none;
  font-weight: bold;
  
}

/* small text */
.help {
  margin-top: 25px;
  color: red;
}

.captcha {
  font-size: 12px;
  color: lightgray;
}
.list{
    display: flex;
}
.list a{
    color: white;
}
ul li{
    display: flex;
    list-style: none;
    flex-direction: row;
}
.footer{
    background-color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; 
    gap: 30px;
    padding: 30px;
}