/* Import Google font - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
body {
  background: url(https://i0.wp.com/divinecaterers.co.ke/wp-content/uploads/2016/08/EVASGARDENSWEDDINGSEPT-142.jpg?w=1350&ssl=1)
    no-repeat center center fixed;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;  
}

.admin-login {
  text-align: center;
  margin-bottom: 10px;
}

.admin-login #admin {
  display: block;
  width: 100px;
  margin: 10px auto 0;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  border: none;
  cursor: pointer;
  background: #EF3038;
  border-radius: 25px;
  transition: all 0.2s ease;
}

.container {
  position: relative;
  max-width: 850px;
  width: 100%;
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.container header {
  font-size: 1.5rem;
  color: #EF3038;
  font-weight: 500;
  text-align: center;
  text-decoration: underline;
  text-decoration-color:#707070;
}

.container p {
  text-align: justify;
}

.container .form {
  margin-top: 30px;
}
.form .input-box {
  width: 100%;
  margin-top: 20px;
}
.input-box label {
  color: #333;
  font-weight: 500;
}

.form :where(.input-box input, .select-box) {
  position: relative;
  height: 50px;
  width: 100%;
  outline: none;
  font-size: 1rem;
  color: #707070;
  margin-top: 8px;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 0 15px;
}
.input-box input:focus {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}

.form h4 {
  color: #EF3038;
}

.form .column {
  display: flex;
  column-gap: 15px;
}
.form .foodservice-box {
  margin-top: 20px;
}
.foodservice-box h3 {
  color: #333;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.form :where(.foodservice-option, .foodservice) {
  display: flex;
  align-items: center;
  column-gap: 50px;
  flex-wrap: wrap;
}
.form .foodservice {
  column-gap: 5px;
}
.foodservice input {
  accent-color: #EF3038;
}
.form :where(.foodservice input, .foodservice label) {
  cursor: pointer;
}
.foodservice label {
  color: #707070;
}
.address :where(input, .select-box) {
  margin-top: 15px;
}
.select-box select {
  height: 100%;
  width: 100%;
  outline: none;
  border: none;
  color: #707070;
  font-size: 1rem;
}
.form button {
  height: 55px;
  width: 100%;
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  margin-top: 30px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  background: #EF3038;
}
.form button:hover {
  background: #848383;
}
/*Responsive*/
@media screen and (max-width: 500px) {
  .form .column {
    flex-wrap: wrap;
  }
  .form :where(.foodservice-option, .foodservice) {
    row-gap: 15px;
  }
}

/* =========================
   Honeypot field hidden
========================= */
.hp-field,
.hp-field input,
.hp-field label {
    position: absolute !important;
    left: -10000px !important;
    top: auto !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}
