body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #FF8C00, #FFA500);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.container {
    background-color: #fff;
    padding: 2rem 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    width: 350px;
    text-align: center;
}

h1 {
    color: #FF8C00;
    margin-bottom: 10px;
}

p {
    color: #555;
    font-size: 14px;
    margin-bottom: 20px;
}

.form-group {
    text-align: left;
    margin-bottom: 20px;
}

label {
    display: block;
    color: #333;
    font-weight: 600;
    margin-bottom: 5px;
}

input[type="email"],
input[type="text"] {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
    outline: none;
    transition: border 0.2s ease-in-out;
    box-sizing: border-box;
}

input[type="email"]:focus,
input[type="text"]:focus {
    border-color: #FF8C00;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #FF8C00;
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

button:hover {
    background-color: #E67E00;
}

.link {
    display: inline-block;
    margin-top: 15px;
    text-decoration: none;
    color: #FF8C00;
    font-weight: 600;
    transition: color 0.3s ease;
}

.link:hover {
    color: #E67E00;
}

.messages {
    margin-bottom: 20px;
}

.alert {
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 10px;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}