body {
    font-family: "Segoe UI", sans-serif;
    background: #fff8f0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    background: #ffffff;
    border: 1px solid #fdb441;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 90%;
}

h2 {
    text-align: center;
    color: #c27800;
}

label {
    display: block;
    margin-bottom: 8px;
    color: #555;
}

input[type="email"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

button {
    width: 100%;
    background-color: #fdb441;
    color: #000;
    border: none;
    padding: 12px;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

button:hover {
    background-color: #f8a900;
}

.msg {
    text-align: center;
    color: #007b00;
    margin-bottom: 20px;
}
