@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

body, html {
    height: 100%;
    color: #fff;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.content {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 10px 0 21px 0 rgb(54, 57, 140);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    max-width: 400px;
    width: 100%;
}

h1 {
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.login-form {
    display: flex;
    flex-direction: column;
}

input {
    margin: 0.5rem 0;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}
input::placeholder {
    color: black;
    font-style: italic;
}

button {
    background-color: #36398d;
    color: white;
    padding: 0.8rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #36398d;
}

.forgot-password {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.forgot-password a {
    color: #585a9f;
    text-decoration: none;
}

.forgot-password a:hover {
    text-decoration: underline;
}