.login-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    z-index: 9999;
}

.account-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 999;
}

.account-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    max-width: 90%;
    background: #fff;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    border-radius: 8px;
    z-index: 1000;
}

.user-info-section {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    flex-direction: column;
    gap: 10px;
    font-family: Arial, sans-serif;
}

.user-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.user-info-field {
    display: flex;
    align-items: center;
    gap: 10px;
}

.password-section {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.button-group {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    margin-top: auto;
    margin-bottom: auto;
}