
body {
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.login-container {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
}

.login-container h2 {
    color: #333;
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-control {
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 1rem;
}

.input-group {
    position: relative;
}

.input-group .toggle-pin {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #666;
}

.btn-login {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    background-color: #007bff;
    color: #fff;
    border: none;
    font-size: 16px;
}

.btn-login:hover {
    background-color: #0056b3;
}

.bottomInfo {
    bottom: 0;
    position: fixed;
}