@import url(https://fonts.googleapis.com/css?family=Roboto:300);
*
{
  margin: 0;
  padding: 0;
  box-sizing: border-box; 
}

/* CSS for the login form */
body {
  font-family: Arial, sans-serif;
  background:  linear-gradient(to bottom, #0f0c29, #302b63, #24243e);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.login-page {
  width: 320px;
  background: #ffffff;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.form img.indexlogo {
  width: 100px;
  margin-bottom: 20px;
}

.form input.input1 {
  width: 100%;
  padding: 10px 15px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
  outline: none;
  transition: border 0.3s ease-in-out;
}

.form input.input1:focus {
  border-color: #4caf50;
}

.form button {
  width: 100%;
  padding: 10px;
  background: #4caf50;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 1px;
  cursor: pointer;
  text-transform: uppercase;
  transition: background-color 0.3s ease-in-out;
}

.form button:hover {
  background: #388e3c;
}

.form button:active {
  transform: scale(0.98);
}

/* Add a bit of spacing for better structure */
h3.heading {
  color: #4caf50;
  margin-bottom: 20px;
}
