body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #f4f6f9;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-wrapper {
    width: 100%;
    max-width: 380px;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    text-align: center;
}

.logo img {
    width: 120px;
    margin-bottom: 20px;
}

.login-form {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.login-form h2 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 22px;
    color: #2c3e50;
}

.login-form input {
    margin-bottom: 15px;
    padding: 10px 12px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.login-form button {
    padding: 10px;
    background: #3498db;
    color: white;
    border: none;
    font-size: 15px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
}

.login-form button:hover {
    background: #2980b9;
}
