@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');
body,
html {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans", sans-serif;
  height: 100%;
}
.container {
  background : linear-gradient(135deg,#8a2be2,#4169e1);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  
}
.content {
  text-align: center;
  background-color: #fff;
  padding: 10px;
  border-radius: 8px;
  max-width: 400px;
}
.logo {
  width: 250px;
  height: 175px;
  
}
h1{
  color: #333;
  margin-bottom: 20px;
}
p{
  color: #666;
  margin-bottom: 20px;
}
form {
  display: flex;
  flex-direction: column;
}
input[type="email"]{
  padding: 0.5rem;
  border-radius: 8px;
  border: 1 solid #ccc;
  margin-bottom: 20px;
}
button {
  padding: 0.5rem;
  background-color: #8a2be2;
  border-radius: 8px;
  color: #fff;
  border: none;
  cursor: pointer;
  

}
button:hover {
  background-color: #894ec0;
}