
body {
    font-family: Arial, sans-serif;
    background-color: #f9f9fb;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}
.container {
    background-color: white;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 360px;
}
.logo {
    font-size: 24px;
    font-weight: bold;
    color: #1e2a50;
    margin-bottom: 10px;
}
h1 {
    font-size: 22px;
    margin: 20px 0 10px;
    color: #1e2a50;
}
p {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
}
form {
    display: flex;
    flex-direction: column;
    align-items: center;
}
input[type="email"] {
    width: 100%;
    max-width: 300px;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    margin-bottom: 16px;
    font-size: 14px;
    box-sizing: border-box;
}
button {
    background-color: #3366ff;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    width: 100%;
    max-width: 300px;
}
.features {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
    font-size: 12px;
    color: #333;
}
.testimonial {
    font-size: 12px;
    color: #333;
    margin-top: 20px;
    font-style: italic;
}
