body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(to right, #f89520, #f8952088);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-container {
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 450px;
}

.login-form h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #333;
}

.input-group {
    margin-bottom: 1.2rem;
    position: relative;
}

.input-group label {
    display: block;
    margin-bottom: 0.3rem;
    color: #555;
}

.input-group input {
    width: 90%;
    padding: 0.75rem 1rem;
    padding-right: 40px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
}

.password-group {
    position: relative;
}

button[type="submit"] {
    width: 100%;
    padding: 0.75rem;
    background-color: #007bff;
    color: white;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #0056b3;
}

.login-logo {
    width: 100%;
    display: block;
    margin: 0 auto 1rem auto;
}