body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f3f4f6;
    margin: 0;
    padding: 0;
    display: flex;
    height: 100vh;
    justify-content: center;
    align-items: center;
}

.container {
    background-color: #ffffff;
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    max-width: 400px;
    width: 100%;
}

h2 {
    text-align: center;
    color: #111827;
    margin-bottom: 20px;
}

label {
    font-weight: bold;
    color: #374151;
    display: block;
    margin-bottom: 5px;
}

input[type="text"],
input[type="password"],
button {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border-radius: 5px;
    border: 1px solid #d1d5db;
    box-sizing: border-box;
    margin-bottom: 15px;
}

.input-password {
    position: relative;
}

.input-password input {
    padding-right: 40px;
}

.eye {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #6b7280;
    font-size: 16px;
    user-select: none;
}

button {
    background-color: #2563eb;
    color: white;
    border: none;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

button:hover {
    background-color: #1e40af;
}

.footer {
    margin-top: 10px;
    text-align: center;
    font-size: 12px;
    color: #6b7280;
}

.eye svg {
    display: block;
}
.eye:hover svg {
    fill: #374151;
}