body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to bottom, #FB4141, #A31D1D);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    text-align: center;
    color: white;
    width: 300px;
}

.logo {
    width: 300px;
    margin-bottom: 20px;
}

h2 {
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: normal;
}

h1 {
    font-size: 24px;
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

input[type="text"],
input[type="password"] {
    padding: 12px;
    border: none;
    border-radius: 20px;
    font-size: 14px;
}

button {
    padding: 12px;
    background-color: #5a78ff;
    border: none;
    border-radius: 20px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.3s;
}

button:hover {
    background-color: #4a66d6;
}

.footer {
    margin-top: 150px;
    font-size: 12px;
    color: #ffffffb3;
}
