body {
    background-color: #fafafa;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
 }

.box {
    background: white;
    border: 1px solid #dbdbdb;
    width: 350px;
    padding: 40px;
    box-sizing: border-box;
    text-align: center;
}

.logo {
    font-family: 'Pacifico', cursive;
    font-size: 36px;
    margin-bottom: 20px;
}

input[type="email"] {
    width: 100%;
    padding: 10px;
    margin: 6px 0;
    border: 1px solid #ccc;
    background: #fafafa;
    font-size: 14px;
    border-radius: 4px;
    box-sizing: border-box;
}

button {
    width: 100%;
    background-color: #007bff;
    color: white;
    padding: 10px;
    margin-top: 10px;
    border: none;
    font-weight: bold;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

.message {
    margin-top: 15px;
    font-size: 14px;
    color: #dc3545;
}

.message.success {
    color: green;
}

.login-link {
    margin-top: 15px;
    font-size: 14px;
}

.login-link a {
    color: #0095f6;
    text-decoration: none;
    font-weight: bold;
}

.login-link a:hover {
    text-decoration: underline;
}