@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,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: rgba(255, 255,255, 0.9);
    padding: 2rem;
    border-radius: 10px;
    max-width: 300px;
    width: 90%;
    
}
.logo{
    width:200px;
    height: auto;
    object-fit: contain;

}
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: 5px;
    border: 1px solid #ccc;
    margin-bottom: 1rem;
}
button{
    padding: 0.5rem;
    background-color: #8a2be2;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3 ease-in-out;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);

}
button:hover{
    background-color:#7a1dd1;
}
/* svg{
    position: absolute;
} */