@font-face {
    font-family: 'Jost';
    src: url('/static/fonts/Jost-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
    font-family: 'Jost', Arial, sans-serif;
    background-color: #f5f5f5;
}

.logo {
    max-width: 500px;
    height: auto;
    margin-bottom: 2rem;
}

h1 {
    text-align: center;
    margin: 20px 0;
    width: 100%;
    font-weight: 500;
}

form {
    width: 100%;
    max-width: 400px;
    padding: 2rem;
    box-sizing: border-box;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
}

input[type="email"] {
    width: 100%;
    padding: 12px;
    margin: 8px 0 20px;
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

input[type="submit"] {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    cursor: pointer;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    transition: background-color 0.2s ease;
}

input[type="submit"]:hover {
    background-color: #0056b3;
}

/* Style for error and success messages */
p {
    width: 100%;
    max-width: 400px;
    text-align: center;
    margin: 10px 0;
    padding: 10px;
    border-radius: 4px;
}

p[style*="color: red"] {
    background-color: #ffebee;
    border: 1px solid #ffcdd2;
}

p[style*="color: green"] {
    background-color: #e8f5e9;
    border: 1px solid #c8e6c9;
}