body {
    font-family: Arial, sans-serif;
    background-color: #eef2f5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.login-box {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    width: 300px;
    text-align: center;
}

.login-box h2 {
    margin-bottom: 20px;
}

.login-box input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

.login-box button {
    padding: 10px;
    width: 100%;
    border: none;
    border-radius: 8px;
    background-color: #007bff;
    color: white;
    font-weight: bold;
    cursor: pointer;
}

.login-box .error {
    color: red;
    margin-bottom: 10px;
}

.login-box a {
    color: #007bff;
    text-decoration: none;
}

.success {
    color: green;
    font-weight: bold;
    margin-top: 10px;
}
.error {
    color: red;
    font-weight: bold;
    margin-top: 10px;
}

.success-box, .error-box {
    padding: 10px 15px;
    border-radius: 6px;
    margin: 15px 0;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}

.success-box {
    background-color: #e6f9ec;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

.error-box {
    background-color: #fdecea;
    color: #c62828;
    border: 1px solid #f5c6cb;
}

.success-box i, .error-box i {
    font-size: 18px;
}