/* Importing Google Fonts - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #d6dcdd;
}

.container {
  width: 100%;
  max-width: 400px;
  background-color: #f5f4f4;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.logo {
  margin-bottom: 20px;
}

.user-details {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}

.input-box {
  width: 100%;
}

.input-box span.details {
  font-weight: 500;
  margin-bottom: 5px;
  display: block;
  text-align: left;
}

.input-box input {
  height: 45px;
  width: 100%;
  padding: 0 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
  transition: border-color 0.3s;
}

.input-box input:focus {
  border-color: #A20F3E;
}

.button {
  text-align: center;
  margin-top: 15px;
}

.button input {
  height: 45px;
  width: 120px;
  background: #009999;
  border: none;
  border-radius: 5px;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.3s;
}

.button input:hover {
  background: #036b6b;
}

footer {
  padding: 20px;
  text-align: center;
  font-size: 14px;
  color: #555;
}