
body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #0c1a2b;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
    padding: 20px;
}
.container {
    max-width: 600px;
}
.logo {
    max-width: 180px;
    margin-bottom: 30px;
}
h1 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}
.subtitle {
    font-size: 16px;
    margin-bottom: 30px;
}
.email-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}
.email-form input {
    padding: 10px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
}
.email-form button {
    padding: 10px;
    background-color: #ffffff;
    color: #0c1a2b;
    border: none;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
}
.socials {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}
.socials a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
}
footer {
    font-size: 12px;
    color: #cccccc;
}
